main img {
    max-width: 100%;
}

main article .meta-subtitle {
    font-style: italic;
}

body {
    background-color: #F9F7F2;
}

h1, h2, h3, h4, h5, h6 {
    color: #2C3E36;
}

.meta-subtitle {
    color: #5D6D7E;
}

.card {
    background-color: #ffffff;
    background-clip: border-box;

    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;

    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px); /* Die Karte hebt sich dem Leser entgegen */
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.15); /* Goldener Schimmer beim Hover */
}

.card-header {
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(197, 160, 89, 0.08);
    border-bottom: 1px solid rgba(44, 62, 54, 0.1);

    /* Typografie im Header */
    color: var(--text-main);
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.card-body .episode-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: episode-counter;
}

.episode-item {
    display: flex;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(44, 62, 54, 0.05);
}

.episode-item:last-child {
    border-bottom: none;
}

/* Die dezente, goldene Nummerierung */
.episode-item::before {
    content: counter(episode-counter);
    counter-increment: episode-counter;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent-gold);
    min-width: 1.8rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.episode-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.2s ease-in-out;
}

.episode-link:hover {
    color: var(--accent-gold);
    transform: translateX(4px); /* Verschiebt den Text, ohne Platz zu stehlen */
}

.episode-item.active {
    background-color: rgba(197, 160, 89, 0.04); /* Hauchzarter Gold-Schimmer */
    margin-left: -1.25rem; /* Gleicht Card-Body Padding aus */
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.episode-item.active .episode-link {
    font-weight: 600;
}

article h3 {
    border-top: 1px solid #33333332;
    margin-top: 1em;
    padding-top: .33em;
}
