/* Sirmium Capital — Podcast Page Styles */

.podcast-hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f172a 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(197, 160, 89, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    animation: podcastFloat 20s ease-in-out infinite;
}

@keyframes podcastFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, -1%) rotate(1deg);
    }

    66% {
        transform: translate(-1%, 2%) rotate(-1deg);
    }
}

.podcast-hero>* {
    position: relative;
    z-index: 1;
}

.podcast-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.podcast-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.podcast-hero h1 span {
    color: #c5a059;
}

.podcast-hero p {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
}

.subscribe-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.subscribe-btn:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-1px);
}

.subscribe-btn svg {
    width: 18px;
    height: 18px;
}

.shows-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.shows-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 0.5rem;
}

.shows-section .subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 2rem;
}

.show-card {
    background: linear-gradient(135deg, #111827, #0d1321);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.show-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.show-number {
    font-family: 'JetBrains Mono', 'Inter', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.show-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.show-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.show-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.show-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #64748b;
}

.show-meta span strong {
    color: #94a3b8;
}

.show-topics {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.show-topics span {
    padding: 0.2rem 0.6rem;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
    font-size: 0.7rem;
    color: #c5a059;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0.02));
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: #94a3b8;
    max-width: 540px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.cta-form input[type="email"]:focus {
    border-color: #c5a059;
}

.cta-form button {
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #c5a059, #d4af6a);
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.cta-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
}

.episodes-preview {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.episodes-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 0.5rem;
}

.episodes-preview .subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.episode-list {
    list-style: none;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.episode-item:hover {
    background: rgba(17, 24, 39, 0.8);
    border-color: rgba(197, 160, 89, 0.2);
}

.ep-num {
    font-family: 'JetBrains Mono', 'Inter', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c5a059;
    min-width: 32px;
}

.ep-info {
    flex: 1;
}

.ep-info h4 {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.2rem;
}

.ep-info p {
    font-size: 0.8rem;
    color: #64748b;
}

.ep-tag {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ep-tag.briefing {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.ep-tag.portfolio {
    background: rgba(197, 160, 89, 0.12);
    color: #c5a059;
}

.ep-tag.coming {
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
}

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

    .podcast-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .show-card {
        padding: 1.5rem;
    }

    .nav-links-podcast {
        display: none;
    }
}

/* Navigation */
.navbar-podcast {
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.logo-podcast {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-podcast-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #c5a059;
    font-weight: 700;
}

.logo-podcast-subtext {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links-podcast {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link-podcast {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.nav-link-podcast:hover {
    color: #c5a059;
}

.btn-podcast-call {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #c5a059, #d4af6a);
    color: #0f172a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-podcast-call:hover {
    transform: translateY(-1px);
}

.podcast-status {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #64748b;
}

.episodes-info-box {
    max-width: 640px;
    margin: 2.5rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
}

.episodes-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.episodes-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.episodes-info-accent {
    color: #c5a059;
}