/* Long Content Section Styles */

.long-content-section {
    padding: 5rem 1rem;
    background-color: #fff;
    --prose-width: 75ch; /* ~75 characters max width for optimal reading */
    --color-text-main: #333;
    --color-text-light: #555;
    --bg-gray: #f9fafb;
}

.long-content-section.theme-dark {
    background-color: var(--chickin-anthracite);
    color: white;
    --color-text-main: #f3f3f3;
    --color-text-light: #ccc;
}

.long-content-section.theme-gray {
    background-color: var(--bg-gray);
}

/* Header */
.content-header {
    margin-bottom: 2.5rem;
    text-align: center;
}
.content-header.layout-2-cols {
    text-align: left;
    max-width: var(--prose-width);
    margin: 0 auto 3rem auto;
}

.content-subtitle {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--chickin-orange);
    margin-bottom: 0.5rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.2;
}


/* Body Wrapper */
.content-body {
    max-width: var(--prose-width);
    margin: 0 auto;
}

/* Layout: Wide */
.content-body.layout-wide {
    max-width: 1000px;
}

/* Layout: 2 Columns (Magazine Style) */
.content-body.layout-2-cols .content-prose {
    column-count: 2;
    column-gap: 3rem;
    text-align: justify;
}
@media (max-width: 768px) {
    .content-body.layout-2-cols .content-prose { column-count: 1; text-align: left; }
}


/* Lead Text */
.content-lead {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    border-left: 4px solid var(--chickin-orange);
    padding-left: 1.5rem;
    font-weight: 500;
}
.theme-dark .content-lead {
    color: white;
}


/* Prose (Typography for content) */
.content-prose {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

.content-prose p { margin-bottom: 1.5rem; }
.content-prose ul, .content-prose ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.content-prose li { margin-bottom: 0.5rem; }
.content-prose h3 {
    font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem;
    color: var(--color-text-main); font-weight: 700;
}
.content-prose blockquote {
    font-style: italic; border-left: 3px solid #ccc; padding-left: 1rem; margin: 2rem 0; color: var(--color-text-main);
}

/* CTA */
.content-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}
.layout-2-cols .content-cta-wrapper { justify-content: flex-start; }
