/* =====================================================
   ABOUT US PAGE
   Template: template-about.php
===================================================== */

/* =========================
   Page wrapper
   ========================= */

.ga-about-page {
    margin-bottom: 0;
}

.ga-about-page #primary,
.ga-about-page .site-main,
.ga-about-page article.entry,
.ga-about-page .entry-content-wrap {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.ga-about-page .content-bg {
    padding: 0 !important;
}

/* =========================
   Hero Banner
   ========================= */

.ga-about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    padding: var(--ga-20);
    align-items: center;
    background-image: url("../../images/header-about-us.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Dark overlay for readability */
.ga-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.ga-about-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 270px;
    margin-left: 10px;
}

.ga-about-hero__title {
    font-family: var(--ga-font-serif);
    font-weight: 700;
    font-size: 64px;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

/* =========================
   Content Section
   ========================= */

.ga-about-content {
    background: var(--ga-bg);
    padding: var(--ga-16) var(--ga-6);
}

.ga-about-content__body {
    border-radius: var(--ga-radius-sm);
    padding: 0 var(--ga-12) 0 var(--ga-10);
    background: #fff;
}

/* =========================
   CMS Content Typography
   ========================= */

/* Paragraphs */
.ga-about-content__body p {
    font-family: var(--ga-font-sans);
    font-size: var(--ga-text-md);
    line-height: 1.4;
    color: var(--ga-text);
    margin: 0 0 var(--ga-6);
}

/* Section headings (H2) — rust/orange accent */
.ga-about-content__body h2 {
    font-family: var(--ga-font-serif);
    font-weight: 700;
    font-size: var(--ga-text-2xl);
    line-height: 1.2;
    color: var(--ga-olive);
    margin: 0 0 var(--ga-2);
}

/* Remove top border from the first heading */
.ga-about-content__body h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* Sub-headings (H3) */
.ga-about-content__body h3 {
    font-family: var(--ga-font-sans);
    font-weight: 700;
    font-size: var(--ga-text-xl);
    color: var(--ga-text);
    margin: var(--ga-8) 0 var(--ga-3);
}

/* Unordered / ordered lists */
.ga-about-content__body ul,
.ga-about-content__body ol {
    margin: 0 0 var(--ga-6) var(--ga-6);
    padding: 0;
}

.ga-about-content__body li {
    font-family: var(--ga-font-sans);
    font-size: var(--ga-text-md);
    line-height: 1.4;
    color: var(--ga-text);
    margin-bottom: var(--ga-2);
}

/* Bold / strong */
.ga-about-content__body strong,
.ga-about-content__body b {
    font-weight: 700;
}

/* Links */
.ga-about-content__body a {
    color: var(--ga-rust);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.ga-about-content__body a:hover {
    color: var(--ga-navy);
}

/* =========================
   Responsive — Mobile
   ========================= */
@media (max-width: 768px) {
    .ga-about-hero {
        min-height: 200px;
        padding: 0;
    }

    .ga-about-hero__inner {
        padding: 0 0 20px 10px;
        margin-top: 120px;
    }

    .ga-about-hero__title {
        font-size: 36px;
    }

    .ga-about-content {
        padding: 0;
    }

    .ga-about-content__body {
        padding: var(--ga-8) var(--ga-6);
    }
}
