
#newsDetails{
    padding: 3rem 1rem 6rem 1rem;
    --max-size: 800px;
}

.container{
    max-width: calc(var(--max-size) + 200px);
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    width: 100%;
}

.article-header{
    text-align: center;
    margin-bottom: 2rem;
}


.article-date{
    display: block;
    color: var(--text-muted);
    font-size: var(--font-s);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    margin-top: 0;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive Headline */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.article-lead {
    font-size: var(--font-l);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 65ch; /* Lesbarkeit! */
    margin: 0 auto 2.5rem auto;
}

.article-hero-image {
    width: 100%;
    max-width: 1000px; /* Etwas breiter als der Text */
    margin: 0 auto 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    box-sizing: border-box;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 60vh;
}


.rich-text {
    font-size: var(--font-l);
    line-height: 1.8;
    color: var(--text);
    max-width: 65ch;
}

.rich-text p {
    margin-bottom: 1.5rem;
}

.rich-text h2 {
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: var(--font-xl);
    color: var(--primary);
}

.rich-text h3 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: var(--font-l);
}

.rich-text ul, .rich-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.rich-text li {
    margin-bottom: 0.5rem;
}

.rich-text blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 2rem 0;
}

/* Bilder im Quill Content responsive machen */
.rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}