:root {
    --bg-color: #F5EFE0;
    --accent: #1a1a1a;
    --white: #ffffff;
}

body {
    background-color: var(--bg-color);
    font-family: 'DM Sans', sans-serif;
    color: var(--accent);
    margin-top: 100px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

/* Podcast Card Styling */
.podcast-card {
    border: none;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
    height: 100%;
}

.podcast-card:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.podcast-content {
    padding: 30px;
}

.podcast-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.podcast-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

hr.gold-line {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    margin: 0 0 20px 0;
}

.empty-state {
    padding: 100px 0;
    text-align: center;
    opacity: 0.6;
}