/* ============================
   ABOUT PAGE BASE & SECTIONS
   ============================ */

.about-page {
    background: #000;
    color: #fff;
}

/* Section shell */
.about-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================================
   SHARED ABOUT SECTION HEADER STYLE
   (matches "What We Want You To Feel")
   ========================================= */

.gnr-section-title {
    font-family: 'Algerian', var(--header-font, serif);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #c8a763;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.45),
        0 4px 10px rgba(0,0,0,0.35);
}

.gnr-section-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0 auto 2.3rem;
    max-width: 850px;
    text-align: center;
}

.gnr-section-line {
    flex-grow: 1;
    height: 2px;
    max-width: 160px;
    min-width: 80px;

    background: linear-gradient(
        to right,
        rgba(200,167,99,0),
        rgba(200,167,99,1),
        rgba(200,167,99,0)
    );

    opacity: 0.85;
    border-radius: 999px;
}

.gnr-section-text {
    margin: 0;
    font-size: 0.99rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* stack lines on small screens */
@media (max-width: 600px) {
    .gnr-section-intro {
        flex-direction: column;
        gap: 0.7rem;
    }

    .gnr-section-line {
        max-width: 120px;
    }
}

/* Simple container constraint if not already global */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .about-section {
        padding: 2.5rem 0;
    }

    .about-section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 2rem 0;
    }
}