/* Editorial Layout Structure for About Page */
.about-flow {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.meta-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.75rem;
}

.display-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-structure);
    opacity: 0.9;
}

.divider {
    border: none;
    border-top: 1px solid rgba(30, 20, 29, 0.15);
    margin: 3.5rem 0;
}

/* Asymmetric Editorial Text Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr 2fr;
        gap: 2.5rem;
    }
}

.editorial-grid h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.grid-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--color-structure-muted);
}

.grid-content p:last-child {
    margin-bottom: 0;
}

/* Footer Section Call To Action */
.about-footer {
    text-align: center;
    background-color: rgba(30, 20, 29, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(30, 20, 29, 0.1);
}

.about-footer h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.about-footer p {
    color: var(--color-structure-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}