.panel-podcast-index {
    padding: 15px;
    border: 1px solid #001d5c;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: box-shadow .3s;
}

.panel-podcast-index:hover {
    box-shadow: 0 0 10px rgba(33, 33, 33, .4);
}

.panel-podcast-index>table {
    border-collapse: collapse;
    margin-bottom: 20px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0px;
}

.panel-podcast-index>table>tbody>tr:nth-child(1)>td:nth-child(1) {
    padding-right: 20px;
    width: 140px;
}

.panel-podcast-index>table>tbody>tr:nth-child(1)>td:nth-child(1)>div {
    min-height: 120px;
}

.panel-podcast-index>table>tbody>tr:nth-child(2)>td:nth-child(1)>div {
    padding-top: 20px;
    min-height: 120px;
}

.panel-podcast-index h3 {
    color: #696462;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 10px;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .panel-podcast-index>table>tbody>tr:nth-child(1)>td:nth-child(1) {
        padding-right: 20px;
        width: 100px;
    }

    .panel-podcast-index>table>tbody>tr:nth-child(1)>td:nth-child(1)>div {
        min-height: 105px;
    }
    
    .panel-podcast-index>table>tbody>tr:nth-child(2)>td:nth-child(1)>div {
        min-height: 200px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .panel-podcast-index>table>tbody>tr:nth-child(1)>td:nth-child(1) {
        width: 140px;
    }


    .panel-podcast-index>table>tbody>tr:nth-child(2)>td:nth-child(1)>div {
        min-height: auto;
    }
}