:root {
    --idola-bg: #f3f4f6;
    --idola-surface: #ffffff;
    --idola-surface-soft: #f8fafc;
    --idola-text: #111827;
    --idola-text-soft: #4b5563;
    --idola-accent: #0e6d8a;
    --idola-accent-hover: #0b5a72;
    --idola-border: #e5e7eb;
}

.podcast-archive-wrapper {
    color: var(--idola-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--idola-bg);
    padding: 0.4rem;
    border-radius: 16px;
}

.podcast-featured {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 0;
    background: var(--idola-surface);
    border: 1px solid var(--idola-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.9rem;
}

.podcast-featured img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.podcast-featured-content {
    padding: 1.6rem 1.5rem;
    background: var(--idola-surface-soft);
}

.podcast-featured-content h3 {
    margin: 0.35rem 0 0.7rem;
    color: var(--idola-text);
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.podcast-featured-content p {
    margin-bottom: 1.1rem;
    color: var(--idola-text-soft);
    line-height: 1.5;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.podcast-card {
    background: var(--idola-surface);
    border: 1px solid var(--idola-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.podcast-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.podcast-card-content {
    padding: 1.05rem;
}

.podcast-card-content h3 {
    margin: 0.35rem 0 0.55rem;
    color: var(--idola-text);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.podcast-card-content p {
    margin-bottom: 0.95rem;
    color: var(--idola-text-soft);
    line-height: 1.45;
}

.podcast-date {
    display: inline-block;
    font-size: 0.86rem;
    color: #6b7280;
    font-weight: 500;
}

.podcast-watch-btn {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 2.2rem;
    background: var(--idola-accent);
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    min-width: 220px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(14, 109, 138, 0.3);
}

.podcast-watch-btn:hover {
    background: var(--idola-accent-hover);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 14px 26px rgba(11, 90, 114, 0.34);
}

.podcast-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.podcast-modal.is-open {
    display: flex;
}

.podcast-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.62);
}

.podcast-modal-content {
    position: relative;
    width: min(920px, 92vw);
    background: #ffffff;
    border: 1px solid var(--idola-border);
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
    z-index: 2;
}

.podcast-modal-close {
    position: absolute;
    top: 0.45rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    color: #0f172a;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.podcast-modal-video iframe,
.podcast-modal-video video {
    width: 100%;
    min-height: 460px;
    border: none;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .podcast-featured {
        grid-template-columns: 1fr;
    }

    .podcast-featured img {
        min-height: 240px;
    }

    .podcast-featured-content h3 {
        font-size: 1.4rem;
    }

    .podcast-watch-btn {
        font-size: 1rem;
        min-width: 180px;
        padding: 0.8rem 1.6rem;
    }
}

@media (max-width: 767px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .podcast-modal-video iframe,
    .podcast-modal-video video {
        min-height: 240px;
    }
}
