/* Tarjeta de Podcast Individual */
.podcast-card {
    margin-top: 40px;
    padding-bottom: 15px;
    margin-bottom: 40px;
    width: 100%;
}

.podcast-card:last-child {
    border-bottom: none;
}

.podcast-card__inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.podcast-card__media {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.podcast-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botón de Play */
.podcast-card__play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    transition: transform 0.2s ease;
}

.podcast-card__link:hover .podcast-card__play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Textos */
.podcast-card__episode-label {
    color: var(--inp-color-orange-600);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-family: var(--inp-font-family-mono);
}

.podcast-card__title {
    font-family: var(--inp-font-family);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px 0;
    color: var(--inp-color-charcoal-400);
}

.podcast-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.podcast-card__excerpt {
    color: var(--inp-color-gray-500);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}

.podcast-card__meta {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.podcast-card__author {
    color: var(--inp-color-charcoal-400);
    line-height: 1.25;
}

.podcast-card__date {
    color: var(--inp-color-gray-500);
    line-height: 1.25;
}

.podcast-card__sep {
    margin: 0 6px;
}

/* Responsive móvil */
@media (max-width: 767px) {
    .podcast-card__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .podcast-card__media {
        width: 100%;
        flex: 0 0 auto;
    }
    .podcast-card__inner {
        display: flex;
        gap: 1.25rem;
        align-items: center;
    }
}

.podcast-mobile-ad-wrapper {
    display: none;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.podcast-title {
    font-family: var(--inp-font-family);
    font-size: 36px;
    font-weight: var(--cmsmasters-h2-font-weight);
    color: var(--inp-color-charcoal-400);
}

.podcast-subtitle {
    font-family: var(--inp-font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--inp-color-gray-500);
}

.podcast-hero-subtitle {
    color: var(--inp-color-cream-500);
    font-size: 16px;
    font-family: var(--inp-font-family);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .podcast-mobile-ad-wrapper {
        display: block;
        padding: 20px 0;
    }
}