.featured-podcast {
    padding-block: var(--space-64);
    background-color: var(--primary-color);
    color: white;
}

.featured-podcast .title_section,
.featured-podcast .title_section+p {
    color: white;
}

.featured-podcast .grid-2__items {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 90px;
}

.featured-podcast .grid-2__items>.grid-2__item:first-child img {
    width: 100%;
    height: auto;
}

.featured-podcast .anda-small-card__item {
    background: transparent;
    padding: 10px;
    color: white;
    transition: background 0.3s ease;
}

.featured-podcast .anda-small-card__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.featured-podcast .anda-small-card__item>.card__item:first-child {
    flex: 0 0 120px;
}

.featured-podcast .anda-small-card__item>.card__item:first-child img {
    width: 100%;
}

.featured-podcast .anda-small-card__item h3 a {
    color: white;
}

.featured-podcast .card__item.excerpt {
    font-size: var(--fs-14);
    color: #969696;
    margin-bottom: 10px;
}

.card__item.info {
    display: flex;
    gap: 12px;
}

.card__item.info p {
    margin-bottom: 0;
    font-size: var(--fs-14);
    color: #969696;
    font-weight: normal !important;
}

.featured-podcast .grid-2__item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-podcast .all-items {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
}

.featured-podcast .featured-podcast__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-podcast .featured-podcast__content p {
    margin-bottom: 10px;
    color: white;
}

.featured-podcast .icons-container {
    display: flex;
    gap: 20px;
}

.featured-podcast .icons-container a {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.featured-podcast .icons-container a:hover {
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .featured-podcast {
        padding-block: var(--space-40);
    }

    .featured-posts__items {
        grid-template-columns: 1fr;
    }

    .featured-posts__categories {
        flex-wrap: wrap;
        padding-inline: 15px;
    }

    .featured-podcast .grid-2__items {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-podcast .anda-small-card__item {
        flex-direction: row;
    }

    .featured-podcast .anda-small-card__item .card__item.content {
        padding: 0 10px 0px 10px;
    }

    .featured-podcast .all-items {
        justify-content: center;
    }
}