/* Layout Styles - Grid, Sections, Content Wrapper */

main {
    flex: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 40px;
    align-items: start;
    transition: grid-template-columns 0.3s ease;
}

/* Index page layout: 50-50 split */
.content-wrapper.index-page-layout {
    grid-template-columns: 1fr 1fr;
}

.blog-section {
    min-width: 0;
}

.patreon-section {
    min-width: 0;
    transition: all 0.3s ease;
}

.section-title {
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    line-height: 1.5;
}

.section-title-part {
    color: var(--accent-color);
    font-weight: 400;
    opacity: 0.85;
}

.section-title-separator {
    color: var(--text-color);
    opacity: 0.5;
    margin: 0 8px;
    font-weight: 300;
    font-size: 0.95em;
}

.section-title-highlight {
    display: block;
    margin-top: 6px;
    font-size: 0.7em;
    color: var(--text-color);
    opacity: 0.65;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3px;
}

