﻿@charset "utf-8";

/* NAU GOLD main: `main.css` + `#container.nau-main` (shared reset/.inner: common.css) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;600;700;800&display=swap");


/* ----- Sub: About (포럼 소개) — 헤더/푸터 제외 본문만 ----- */
.gafh-sub {
    --gafh-navy: #202c80;
    --gafh-sky: #56c2f1;
    overflow: visible;
}

.gafh-about {
    padding-bottom: 8rem;
}

.gafh-about__page-head {
    text-align: center;
    padding: 4rem 0 3.2rem;
}

.gafh-about__label {
    font-weight: 800;
    font-size: var(--fs-20);
    color: #000;
    margin-bottom: 1.2rem;
}

.gafh-about__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(3.6rem, 5vw, 5.2rem);
    color: #000;
    line-height: 1.15;
    margin: 0;
}

/* Hero */
.gafh-about__hero {
    margin-bottom: 4rem;
}

.gafh-about__hero-main {
    position: relative;
    min-height: 36rem;
    max-height: 64rem;
    height: min(64rem, 50vw);
    overflow: hidden;
    background: #202c80;
}

.gafh-about__hero-visual {
    position: absolute;
    inset: 0;
    display: flex;
}

.gafh-about__hero-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gafh-about__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(32, 44, 128, 0.94) 0%,
        rgba(32, 44, 128, 0.82) 38%,
        rgba(45, 35, 120, 0.75) 55%,
        rgba(32, 44, 128, 0.88) 100%
    );
    pointer-events: none;
}

.gafh-about__hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 36rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 4rem 4.8rem;
    box-sizing: border-box;
}

.gafh-about__hero-copy {
    flex: 1 1 28rem;
    max-width: 56rem;
}

.gafh-about__hero-ko {
    font-weight: 800;
    font-size: clamp(2.8rem, 3.8vw, 5.2rem);
    color: var(--gafh-sky);
    line-height: 1.25;
    margin: 0 0 1.6rem;
}

.gafh-about__hero-en {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    color: #fff;
    line-height: 1.35;
    margin: 0;
}

.gafh-about__hero-brand {
    flex: 0 1 36rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    color: #fff;
}

.gafh-about__hero-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 4.1rem;
}

.gafh-about__hero-logo img {
    height: 4.1rem;
    width: auto;
    max-width: 15rem;
    object-fit: contain;
    vertical-align: top;
}

.gafh-about__hero-divider {
    width: 1px;
    align-self: stretch;
    min-height: 4.5rem;
    background: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}

.gafh-about__hero-tagline {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: clamp(1.3rem, 1.2vw, 1.6rem);
    line-height: 1.5;
    margin: 0;
    color: #fff;
}

/* 蹂몃Ц ?꾨젅??+ 2而щ읆 */
.gafh-about__frame {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0 3.2rem 4rem;
    max-width: 110rem;
    margin: 0 auto;
}

.gafh-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 11fr) minmax(0, 19fr);
    gap: 4rem 5.6rem;
    align-items: start;
}

.gafh-about__lead-ko {
    font-size: clamp(var(--fs-24), 2.2vw, 3.2rem);
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    margin: 0 0 2.4rem;
}

.gafh-about__lead-en {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.5rem, 1.3vw, 1.8rem);
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.gafh-about__body-ko,
.gafh-about__body-en {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: #333;
}

.gafh-about__body-ko p,
.gafh-about__body-en p {
    margin: 0 0 1.6rem;
}

.gafh-about__body-ko p:last-child,
.gafh-about__body-en p:last-child {
    margin-bottom: 0;
}

.gafh-about__body-en {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
    border-top: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
    .gafh-about__hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2.4rem;
    }

    .gafh-about__hero-brand {
        flex-wrap: wrap;
    }

    .gafh-about__grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .gafh-about__frame {
        padding: 0 1.6rem 3rem;
    }
}

@media screen and (max-width: 768px) {
    .gafh-about__page-head {
        padding: 2.4rem 0 2rem;
    }

    .gafh-about__hero-main {
        height: auto;
        min-height: 28rem;
        max-height: none;
    }

    .gafh-about__hero-visual {
        flex-direction: column;
    }

    .gafh-about__hero-img {
        width: 100%;
        height: 14rem;
    }

    .gafh-about__hero-inner {
        min-height: auto;
    }
}
