/* theme/04 — Tailwind-first 보조 CSS (v=20260529-r2) */

/* ─── 기본 ─── */
html {
    font-family: 'Pretendard Variable', Pretendard, 'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    scroll-behavior: smooth;
}
body {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ─────────────────────────────────────────────
   1. HEADER
───────────────────────────────────────────── */
#site-header {
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
}

/* ─────────────────────────────────────────────
   2. HERO — FULL BLEED (인물사진 꽉 채움)
───────────────────────────────────────────── */
.gb-hidden { display: none !important; }

.gb-hero-wrap {
    width: 100%;
    margin-top: 3.75rem; /* 모바일 헤더 높이 */
}
@media (min-width: 1024px) {
    .gb-hero-wrap { margin-top: 4.5rem; }
}

/* 이미지+텍스트를 묶는 컨테이너 */
.gb-hero-container {
    position: relative;
    width: 100%;
    /* PC: 화면 전체 높이 채움 */
    height: calc(100vh - 3.75rem);
    min-height: 420px;
    max-height: 900px;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .gb-hero-container {
        height: calc(100vh - 4.5rem);
        max-height: 960px;
    }
}
@media (max-width: 767px) {
    /* 모바일: 이미지 영역만 (텍스트는 .gb-hero-mobile-text로) */
    .gb-hero-container {
        height: 60vw;
        min-height: 240px;
        max-height: 440px;
    }
}

.gb-hero {
    width: 100%;
    height: 100%;
}

.gb-hero-slide {
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* 히어로 슬라이드 배경 이미지 */
.gb-hero-s1 {
    /* 봉사/기부 느낌: 사람들이 함께하는 장면 */
    background-image: url("https://images.unsplash.com/photo-1573497620053-ea5300f94f21?auto=format&fit=crop&w=1920&q=80");
    background-position: center 30%;
}
.gb-hero-s2 {
    background-image: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1920&q=80");
    background-position: center;
}
.gb-hero-s3 {
    background-image: url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1920&q=80");
    background-position: center 25%;
}

/* 슬라이드 인디케이터 — gb-hero-container 기준 좌상단 */
.gb-hero-indicator {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
@media (min-width: 768px) {
    .gb-hero-indicator {
        top: 1.75rem;
        left: 2.5rem;
    }
}

.gb-hi-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    cursor: pointer;
    transition: color .2s;
    line-height: 1;
    position: relative;
}
.gb-hi-num.active {
    color: #fff;
    font-weight: 900;
}
.gb-hi-num::after {
    content: '—';
    display: inline-block;
    width: 0;
    overflow: hidden;
    color: rgba(255,255,255,.4);
    margin-left: 0.25rem;
    transition: width .3s;
}
.gb-hi-num.active::after {
    width: 1.75rem;
    color: rgba(255,255,255,.7);
}

.gb-hi-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    cursor: pointer;
    transition: background .2s;
    backdrop-filter: blur(2px);
    margin-left: 0.25rem;
}
.gb-hi-pause:hover { background: rgba(255,255,255,.28); }

/* 히어로 오버레이 */
.gb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%);
}

/* PC 히어로 좌하단 텍스트 컨테이너 */
/* 768px 미만에서는 숨김 (Tailwind hidden ws-sm:block 과 동일) */
.gb-hero-content {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 3rem;
    z-index: 10;
    max-width: 38rem;
    pointer-events: none;
    display: none;
}
@media (min-width: 768px) {
    .gb-hero-content {
        display: block;
    }
}
@media (min-width: 1280px) {
    .gb-hero-content {
        left: 3rem;
        bottom: 3.5rem;
    }
}
@media (min-width: 1440px) {
    .gb-hero-content {
        left: max(2rem, calc((100vw - 88rem) / 2 + 2rem));
        bottom: 4rem;
    }
}

.gb-hero-content .gb-hero-btn,
.gb-hero-content a {
    pointer-events: auto;
}

.gb-hero-text { display: block; }
.gb-hero-text.hidden { display: none; }

/* 모바일 히어로 텍스트 (이미지 아래 흰 배경) */
/* 768px 이상에서는 숨김 */
.gb-hero-mobile-text {
    background: #fff;
    padding: 1.25rem 1rem 1.5rem;
    display: block;
}
@media (min-width: 768px) {
    .gb-hero-mobile-text {
        display: none;
    }
}

.gb-mtext { display: block; }
.gb-mtext.hidden { display: none; }

.gb-hero-btn-m {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    height: 2.625rem;
    padding: 0 1.375rem;
    border: 1.5px solid #00c986;
    border-radius: 9999px;
    color: #00c986;
    font-size: 0.8125rem;
    font-weight: 900;
    white-space: nowrap;
    transition: all .2s;
}
.gb-hero-btn-m:hover {
    background: #00c986;
    color: #fff;
}

.gb-hero-tag {
    display: inline-flex;
    align-items: center;
    background: #00c986;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    letter-spacing: 0.01em;
}

.gb-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.875rem;
    padding: 0 1.625rem;
    border: 1.5px solid rgba(255,255,255,.8);
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 900;
    white-space: nowrap;
    transition: background .2s;
    text-decoration: none;
}
.gb-hero-btn:hover {
    background: rgba(255,255,255,.18);
}
/* 재생 버튼 (우측) */
.gb-hero-play {
    position: absolute;
    right: 2rem;
    bottom: 3rem;
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.5);
    display: grid;
    place-items: center;
    color: #fff;
    cursor: pointer;
    transition: background .2s;
    backdrop-filter: blur(4px);
}
.gb-hero-play:hover { background: rgba(255,255,255,.32); }

/* ─────────────────────────────────────────────
   3. QUICK BAR
───────────────────────────────────────────── */
.gb-quick-bar {
    background: #00c986;
    position: relative;
    z-index: 10;
}

.gb-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.375rem 1rem;
    color: #fff;
    font-weight: 900;
    transition: background .2s;
    position: relative;
}
.gb-quick-item:hover {
    background: rgba(0,0,0,.08);
}
.gb-quick-item + .gb-quick-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,.25);
}
@media (max-width: 767px) {
    .gb-quick-item + .gb-quick-item:nth-child(3)::before {
        display: none;
    }
}

.gb-quick-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: grid;
    place-items: center;
}

.gb-quick-label {
    font-size: 0.8125rem;
    font-weight: 900;
}

/* ─────────────────────────────────────────────
   4. STORY SLIDER (area-right)
───────────────────────────────────────────── */
.gb-area-right {
    width: calc(100vw - max(1rem, (100vw - 76rem) / 2));
    margin-left: max(1rem, (100vw - 76rem) / 2);
    overflow: hidden;
    position: relative;
}
/* area-right 안의 swiper는 오른쪽으로만 넘치게 */
.gb-area-right .swiper {
    overflow: visible !important;
}

@media (max-width: 767px) {
    .gb-area-right {
        width: calc(100vw - 1rem);
        margin-left: 1rem;
    }
}

.gb-story-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 15rem;
    cursor: pointer;
}
@media (min-width: 768px) {
    .gb-story-card { min-height: 16rem; }
}

.gb-story-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.65));
}

.gb-sc-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.gb-sc-inner b {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 900;
    line-height: 1.4;
}
.gb-sc-inner span {
    color: rgba(255,255,255,.7);
    font-size: 0.75rem;
    font-weight: 600;
}

.gb-sc-1 { background-image: url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-2 { background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-3 { background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-4 { background-image: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-5 { background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-6 { background-image: url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-7 { background-image: url("https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-8 { background-image: url("https://images.unsplash.com/photo-1536640712-4d4c36ff0e4e?auto=format&fit=crop&w=800&q=80"); }
.gb-sc-9 { background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=800&q=80"); }

/* 탭 */
.gb-tab {
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    background: #f0f5f2;
    color: #667a70;
    transition: all .2s;
}
.gb-tab.active,
.gb-tab:hover {
    background: #00c986;
    color: #fff;
}

/* 더보기 링크 */
.gb-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #00c986;
    transition: gap .2s;
}
.gb-more-link:hover { gap: 0.625rem; }

/* 네비게이션 버튼 */
.gb-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    display: grid;
    place-items: center;
    color: #374151;
    transition: all .2s;
    background: #fff;
}
.gb-nav-btn:hover {
    background: #00c986;
    border-color: #00c986;
    color: #fff;
}

/* ─────────────────────────────────────────────
   5. BUSINESS SECTION
───────────────────────────────────────────── */
.gb-biz-tab {
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 900;
    background: #f0f5f2;
    color: #667a70;
    transition: all .2s;
    white-space: nowrap;
}
.gb-biz-tab.active,
.gb-biz-tab:hover {
    background: #00c986;
    color: #fff;
}

.gb-biz-swiper {
    overflow: hidden !important;
}

.gb-biz-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    background: #fff;
}
@media (min-width: 768px) {
    .gb-biz-card {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        min-height: 24rem;
    }
}

.gb-biz-img {
    min-height: 16rem;
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem 1.5rem 0 0;
}
@media (min-width: 768px) {
    .gb-biz-img {
        border-radius: 1.5rem 0 0 1.5rem;
        min-height: auto;
    }
}

.gb-biz-img-0 { background-image: url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=900&q=80"); }
.gb-biz-img-1 { background-image: url("https://images.unsplash.com/photo-1559757175-5700dde675bc?auto=format&fit=crop&w=900&q=80"); }
.gb-biz-img-2 { background-image: url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=900&q=80"); }
.gb-biz-img-3 { background-image: url("https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=900&q=80"); }
.gb-biz-img-4 { background-image: url("https://images.unsplash.com/photo-1536640712-4d4c36ff0e4e?auto=format&fit=crop&w=900&q=80"); }
.gb-biz-img-5 { background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=80"); }

.gb-biz-desc {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .gb-biz-desc { padding: 2.5rem 2rem; }
}

.gb-biz-tag {
    display: inline-flex;
    padding: 0.3rem 0.875rem;
    border-radius: 9999px;
    background: #e8f7ef;
    color: #00a86d;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ─────────────────────────────────────────────
   6. CUSTOM DONATION (맞춤형 나눔 — 6 CARDS)
───────────────────────────────────────────── */
.gb-touch-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 14rem;
    cursor: pointer;
}
@media (min-width: 768px) {
    .gb-touch-card { min-height: 18rem; }
}

.gb-touch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.62));
    transition: background .3s;
}
.gb-touch-card:hover .gb-touch-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.72));
}

.gb-touch-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.gb-touch-text h3 {
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 900;
    line-height: 1.3;
}

.gb-touch-text p {
    color: rgba(255,255,255,.8);
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gb-touch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.625rem;
    height: 2.125rem;
    padding: 0 1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    align-self: flex-start;
    transition: background .2s;
}
.gb-touch-card:hover .gb-touch-btn {
    background: #00c986;
    border-color: #00c986;
}

/* 각 카드 배경 */
.gb-touch-1 { background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=700&q=80"); }
.gb-touch-2 { background-image: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=700&q=80"); }
.gb-touch-3 { background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=700&q=80"); }
.gb-touch-4 { background-image: url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=700&q=80"); }
.gb-touch-5 { background-image: url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=700&q=80"); }
.gb-touch-6 { background-image: url("https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=700&q=80"); }

/* ─────────────────────────────────────────────
   7. RECORD SECTION (풀배경)
───────────────────────────────────────────── */
.gb-record-section {
    background-image:
        linear-gradient(to right, rgba(6,20,15,.78) 0%, rgba(6,20,15,.4) 60%, rgba(6,20,15,.15) 100%),
        url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
}

.gb-rec-box {
    border-radius: 1.25rem;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    min-height: 10rem;
}

.gb-rec-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.52);
    border-radius: inherit;
}

.gb-rec-box > * { position: relative; z-index: 1; }

.gb-rec-b1 { background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=600&q=80"); }
.gb-rec-b2 { background-image: url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=600&q=80"); }
.gb-rec-b3 { background-image: url("https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=600&q=80"); }
.gb-rec-b4 { background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=600&q=80"); }

.gb-rec-ico {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: grid;
    place-items: center;
}

.gb-rec-num {
    font-size: 1.625rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
@media (min-width: 768px) {
    .gb-rec-num { font-size: 1.875rem; }
}

.gb-rec-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────
   8. TRUST / AWARDS
───────────────────────────────────────────── */
.gb-award-card {
    border-radius: 1.25rem;
    background: #fff;
    border: 1.5px solid #e8f3ed;
    padding: 1.625rem 1.375rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: box-shadow .2s;
}
.gb-award-card:hover {
    box-shadow: 0 8px 32px rgba(0,200,134,.12);
}

.gb-award-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #e8f7ef;
    display: grid;
    place-items: center;
}

.gb-partner-logo {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #6b7280;
    padding: 0.5rem 1rem;
    background: #f3f7f5;
    border-radius: 0.625rem;
    border: 1px solid #e5ede9;
    white-space: nowrap;
}

/* ─────────────────────────────────────────────
   9. DONATION STORY (기부이야기)
───────────────────────────────────────────── */
.gb-don-tab {
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    background: #f0f5f2;
    color: #667a70;
    transition: all .2s;
}
.gb-don-tab.active,
.gb-don-tab:hover {
    background: #00c986;
    color: #fff;
}

.gb-don-main-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 22rem;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .gb-don-main-card { min-height: 16rem; }
}

.gb-don-fan-img {
    background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=900&q=80");
}
.gb-don-space-img {
    background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=900&q=80");
}
.gb-don-lecture-img {
    background-image: url("https://images.unsplash.com/photo-1475483768296-6163e08872a1?auto=format&fit=crop&w=900&q=80");
}

.gb-don-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.7));
}

.gb-don-item {
    display: grid;
    grid-template-columns: 5.25rem minmax(0,1fr);
    gap: 1rem;
    align-items: flex-start;
    padding: 1.125rem;
    border-radius: 1.1rem;
    background: #fff;
    box-shadow: 0 3px 16px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.gb-don-item:hover {
    box-shadow: 0 6px 24px rgba(0,200,134,.1);
}

.gb-don-thumb {
    width: 5.25rem;
    height: 5.25rem;
    border-radius: 0.875rem;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.gb-don-t1 { background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=300&q=80"); }
.gb-don-t2 { background-image: url("https://images.unsplash.com/photo-1475483768296-6163e08872a1?auto=format&fit=crop&w=300&q=80"); }
.gb-don-t3 { background-image: url("https://images.unsplash.com/photo-1536640712-4d4c36ff0e4e?auto=format&fit=crop&w=300&q=80"); }

.gb-don-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.gb-don-cat {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #00a86d;
    background: #e8f7ef;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    align-self: flex-start;
}

.gb-don-title {
    font-size: 0.9375rem;
    font-weight: 900;
    line-height: 1.45;
    color: #06140f;
}

.gb-don-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gb-don-date {
    font-size: 0.6875rem;
    color: #94a3b8;
    font-style: normal;
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   10. NOTICE / NEWS
───────────────────────────────────────────── */
.gb-contact-box {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    align-self: start;
}

.gb-news-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.125rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: box-shadow .2s;
    cursor: pointer;
}
.gb-news-item:hover {
    box-shadow: 0 5px 20px rgba(0,200,134,.1);
}

.gb-news-cat {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 0.125rem;
}
.gb-news-cat.press {
    background: #e8f7ef;
    color: #00a86d;
}
.gb-news-cat.notice {
    background: #f0f4ff;
    color: #3b82f6;
}

.gb-news-body {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 0;
}

.gb-news-body b {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    color: #06140f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gb-news-body em {
    font-size: 0.6875rem;
    color: #94a3b8;
    font-style: normal;
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   FLOAT / MOBILE BAR
───────────────────────────────────────────── */
.gb-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    box-shadow: 0 -4px 16px rgba(0,0,0,.07);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.gb-mb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.75rem 0.5rem;
    color: #374151;
    font-size: 0.6875rem;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s;
}
.gb-mb-item:first-child {
    background: #00c986;
    color: #fff;
}
.gb-mb-item:hover { color: #00c986; }
.gb-mb-item:first-child:hover { color: #fff; }

.gb-float-btn {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 1rem;
    background: #1a1a1a;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    transition: transform .2s, box-shadow .2s;
}
.gb-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.gb-donate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 900;
    line-height: 1.3;
    gap: 0.125rem;
    height: auto;
    padding: 0.625rem;
    background: #1a1a1a;
}

#topBtn04.show,
#topBtnMobile04.show {
    opacity: 1;
    visibility: visible;
}
#topBtn04 {
    background: #fff;
    color: #374151;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

/* ─────────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────────── */
#mobileDrawer04.open {
    display: block;
}
#mobileDrawer04 aside {
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.25,.46,.45,.94);
}
#mobileDrawer04.open aside {
    transform: translateX(0);
}

/* ─────────────────────────────────────────────
   SWIPER 보조
───────────────────────────────────────────── */

/* 히어로는 overflow hidden 유지 */
.gb-hero { overflow: hidden !important; }
/* area-right 슬라이더는 오른쪽으로 넘치게 */
.gb-area-right .swiper { overflow: visible !important; }
.gb-area-right .swiper-wrapper { align-items: stretch; }

/* ─────────────────────────────────────────────
   OVERFLOW 방어
───────────────────────────────────────────── */
@media (max-width: 319px) {
    .gb-hero-content { left: 1rem; right: 1rem; bottom: 1.5rem; }
    .gb-hero h1, .gb-hero h2 { font-size: 1.5rem !important; }
}

/* 280 이하 가로 스크롤 방지 */
@media (max-width: 280px) {
    body { min-width: 280px; }
    .gb-quick-item { padding: 1rem 0.5rem; }
    .gb-quick-icon { width: 2.5rem; height: 2.5rem; }
}

/* ─────────────────────────────────────────────
   FOOTER SNS + 패밀리 셀렉트
───────────────────────────────────────────── */
.gb-sns {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e9e5;
    display: grid;
    place-items: center;
    color: #667a70;
    font-size: 1rem;
    transition: all .2s;
}
.gb-sns:hover {
    background: #00c986;
    border-color: #00c986;
    color: #fff;
}

.gb-family-select {
    width: 100%;
    height: 2.75rem;
    padding: 0 2.25rem 0 1rem;
    border: 1px solid #d6e0db;
    border-radius: 0.625rem;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667a70' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .2s;
}
.gb-family-select:hover { border-color: #00c986; }
.gb-family-select:focus { outline: none; border-color: #00c986; box-shadow: 0 0 0 3px rgba(0,200,134,.12); }

/* ─────────────────────────────────────────────
   ENTRY POPUP (PC 우하단 / 모바일 하단 풀폭)
───────────────────────────────────────────── */
.gb-popup-bg {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.45);
    display: none;
    opacity: 0;
    transition: opacity .25s;
}
.gb-popup-bg.show {
    display: block;
    opacity: 1;
}

.gb-popup-wrap {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 22rem;
    max-width: calc(100vw - 2rem);
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    transform: translateY(16px);
    opacity: 0;
    transition: transform .3s, opacity .3s;
}
.gb-popup-bg.show .gb-popup-wrap {
    transform: translateY(0);
    opacity: 1;
}

.gb-popup-body {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    background:
        linear-gradient(160deg, rgba(0,200,134,.92) 0%, rgba(0,168,109,.92) 100%),
        url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=800&q=80");
    background-size: cover;
    background-position: center;
    color: #fff;
}
.gb-popup-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 900;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
}
.gb-popup-title {
    margin-top: 0.875rem;
    font-size: 1.375rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.03em;
}
.gb-popup-desc {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
}
.gb-popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    height: 2.625rem;
    padding: 0 1.25rem;
    background: #fff;
    color: #00a86d;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 900;
    transition: transform .2s;
}
.gb-popup-cta:hover { transform: translateX(3px); }

.gb-popup-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.gb-popup-today {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #667a70;
    cursor: pointer;
}
.gb-popup-today input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: #00c986;
    cursor: pointer;
}
.gb-popup-close {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #374151;
    cursor: pointer;
    transition: color .2s;
}
.gb-popup-close:hover { color: #00c986; }

@media (max-width: 600px) {
    .gb-popup-wrap {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 1.25rem 1.25rem 0 0;
    }
    .gb-popup-title { font-size: 1.25rem; }
}
