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;
}
