/* Remaining CSS from podcast-widget.css */
.widget-podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.podcast-item {
    border-radius: 16px;
    background-color: #071D49;
    display: flex;
    margin-bottom: 40px;
}

.podcast-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

.podcast-title {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: white;
}

.podcast-excerpt {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: white;
}

.podcast-duration {
    display: flex;
    gap: 5px;
    align-items: center;
}

.podcast-duration span {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: white;
}

.podcast-duration svg {
    fill: white;
    width: 14px;
    padding-top: 10px;
}

.podcast-link {
    display: flex;
}

@media only screen and (max-width: 992px) {
    .widget-podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .widget-podcast-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.podcast-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
}

.podcast-item-content-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.podcast-item-content-top-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.podcast-item-content-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.widget-podcast-grid .min-read {
    display: none;
}

.podcast-link svg {
    fill: #FFFFFF;
    width: 32px;
}

.podcast-item-image {
    min-width: 140px;
}

