/**
 * Prose-Styling für CKEditor-Inhalte aus Craft.
 * Tailwind's @tailwind base resettet alle Default-Browser-Styles —
 * deshalb müssen wir Überschriften, Listen, Absätze etc. wieder herstellen.
 */
.prose {
    color: #1f2937; /* text-gray-800 */
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.prose h1 {
    font-size: 2.25rem;       /* text-4xl */
    line-height: 1.2;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #111827;
}
.prose h2 {
    font-size: 1.75rem;       /* ~text-2xl-3xl */
    line-height: 1.3;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}
.prose h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
}
.prose h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.prose p {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}
.prose ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin: 1rem 0;
}
.prose li {
    margin: 0.25rem 0;
}
.prose li > ul,
.prose li > ol {
    margin: 0.25rem 0 0.25rem 0;
}

.prose a {
    color: #2563eb;            /* blue-600 */
    text-decoration: underline;
}
.prose a:hover {
    color: #1d4ed8;            /* blue-700 */
}

.prose strong {
    font-weight: 700;
}

.prose em {
    font-style: italic;
}

.prose blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
    margin: 1.5rem 0;
}
