@charset "euc-kr";
/*
 * IB인베스트먼트투자클럽 2026 리뉴얼 디자인 시스템 v2 (화이트톤)
 * - 1200px 와이드 컨테이너
 * - 화이트 기반 + Red #1a1a1a / Gold #ffd700 악센트
 * - Noto Sans KR 타이포그래피
 */

:root {
    --fs-dark: #1a1a1a;
    --fs-black: #0a0a0a;
    --fs-dark-soft: #f5f5f7;
    --fs-gold: #ffd700;
    --fs-gold-dark: #d4a017;
    --fs-dark-text: #333;
    --fs-text: #222;
    --fs-text-sub: #555;
    --fs-text-hint: #999;
    --fs-bg: #ffffff;
    --fs-bg-soft: #f8f9fb;
    --fs-bg-light: #f3f3f3;
    --fs-border: #e5e8ec;
    --fs-border-light: #f0f0f0;
    --fs-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --fs-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    --fs-container: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&family=Rubik:wght@500;700;900&display=swap');

/* ============ Reset / 기존 너비 override ============ */
body,
#wrap,
#wrap > * {
    /* width: 100% !important; */
    /* max-width: 100% !important; */
}

#wrap {
    background: #fff;
}

/* 기존 .inner 너비 확장 */
#wrap .inner {
    width: 1200px !important;
    max-width: calc(100% - 40px) !important;
    margin: 0 auto !important;
}

/* 기존 mainVisual 여백 제거 (새 Hero가 대체) */
#wrap .inner.mainVisual {
    display: none !important;
}

.fs26-wrap *,
.fs26-wrap *::before,
.fs26-wrap *::after {
    box-sizing: border-box;
}

.fs26-wrap {
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--fs-text);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    background: var(--fs-bg);
}

.fs26-wrap a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fs26-wrap a:hover {
    color: var(--fs-dark);
}

.fs26-wrap img {
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

.fs26-wrap ul,
.fs26-wrap li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============ Container ============ */
.fs26-container {
    width: var(--fs-container);
    max-width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
}

/* ============ Sections ============ */
.fs26-section {
    padding: 70px 0;
    background: #fff;
    position: relative;
}

.fs26-section.fs-soft {
    background: var(--fs-bg-soft);
}

/* ============ Section Header ============ */
.fs26-header {
    text-align: center;
    margin-bottom: 45px;
}

.fs26-header .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--fs-dark-soft);
    border-radius: 20px;
}

.fs26-header h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -1px;
    color: var(--fs-text);
}

.fs26-header h2 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-header .desc {
    font-size: 15px;
    color: var(--fs-text-sub);
    line-height: 1.7;
}

/* ============ Trust Bar (고급) ============ */
.fs26-trust-bar {
    background: #fafbfc;
    padding: 48px 0;
    border-top: 1px solid var(--fs-border);
    border-bottom: 1px solid var(--fs-border);
}

.fs26-trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.fs26-trust-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 30px;
}

.fs26-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: var(--fs-border);
}

.fs26-trust-item .num {
    font-family: 'Rubik', 'Tahoma', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.fs26-trust-item:last-child .num {
    color: var(--fs-dark);
}

.fs26-trust-item .lb {
    font-size: 13px;
    color: var(--fs-text-sub);
    letter-spacing: -0.2px;
    font-weight: 500;
}

/* ============ Post List (투자성과 / 공지사항 공통) ============ */
.fs26-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fs26-post-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fs26-post-card:hover {
    border-color: var(--fs-dark);
    box-shadow: var(--fs-shadow-hover);
    transform: translateY(-4px);
}

.fs26-post-card .thumb {
    width: 100%;
    height: 200px;
    background: var(--fs-bg-light);
    overflow: hidden;
    position: relative;
}

.fs26-post-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fs26-post-card:hover .thumb img {
    transform: scale(1.05);
}

.fs26-post-card .thumb .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--fs-dark);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.fs26-post-card .thumb.no-image {
    background: linear-gradient(135deg, #f8f9fb 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fs-text-hint);
    font-size: 40px;
    font-weight: 900;
}

.fs26-post-card .info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fs26-post-card .info .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--fs-text);
    line-height: 1.5;
    margin-bottom: 10px;
    
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.fs26-post-card .info .excerpt {
    font-size: 13px;
    color: var(--fs-text-sub);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.fs26-post-card .info .meta {
    display: none;
}

.fs26-post-card .info .meta .author {
    font-weight: 500;
    color: var(--fs-text-sub);
}

/* 투자성과 더보기 카드 */
.fs26-post-card.post-more {
    background: linear-gradient(135deg, #f5f5f7 0%, #ebebef 100%);
    border: 1px solid var(--fs-dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    transition: all 0.3s ease;
}

.fs26-post-card.post-more:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-color: var(--fs-dark);
    transform: translateY(-4px);
    box-shadow: var(--fs-shadow-hover);
}

.fs26-post-card.post-more .post-more-inner {
    text-align: center;
    padding: 40px 30px;
    color: var(--fs-dark);
    transition: color 0.3s ease;
}

.fs26-post-card.post-more:hover .post-more-inner {
    color: #fff;
}

.fs26-post-card.post-more .post-more-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 16px rgba(26, 26, 26, 0.18);
    transition: transform 0.3s ease;
}

.fs26-post-card.post-more:hover .post-more-icon {
    transform: scale(1.1);
}

.fs26-post-card.post-more .post-more-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.fs26-post-card.post-more .post-more-desc {
    font-size: 13px;
    opacity: 0.85;
}

/* ============ Gallery (수익인증) ============ */
.fs26-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fs26-gallery-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs26-gallery-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-4px);
    box-shadow: var(--fs-shadow-hover);
}

.fs26-gallery-card .thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--fs-bg-light);
    position: relative;
}

.fs26-gallery-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fs26-gallery-card:hover .thumb img {
    transform: scale(1.05);
}

.fs26-gallery-card .thumb .rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: var(--fs-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--fs-dark);
}

.fs26-gallery-card .info {
    padding: 16px;
}

.fs26-gallery-card .info .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fs-text);
    margin-bottom: 0;
    line-height: 1.45;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    min-height: 41px;
    word-break: keep-all;
    
}

.fs26-gallery-card .info .meta {
    display: none;
}

/* 더보기 카드 */
.fs26-gallery-card.gal-more {
    background: linear-gradient(135deg, #f5f5f7 0%, #ebebef 100%);
    border: 1px solid var(--fs-dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 290px;
}

.fs26-gallery-card.gal-more:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-color: var(--fs-dark);
}

.fs26-gallery-card.gal-more .gal-more-inner {
    text-align: center;
    padding: 30px;
    color: var(--fs-dark);
    transition: color 0.3s ease;
}

.fs26-gallery-card.gal-more:hover .gal-more-inner {
    color: #fff;
}

.fs26-gallery-card.gal-more .gal-more-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.15);
    transition: all 0.3s ease;
}

.fs26-gallery-card.gal-more:hover .gal-more-icon {
    background: #fff;
    color: var(--fs-dark);
    transform: scale(1.1);
}

.fs26-gallery-card.gal-more .gal-more-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}

.fs26-gallery-card.gal-more .gal-more-desc {
    font-size: 12px;
    opacity: 0.8;
}

/* ============ Board 2-column (Notice + Press) ============ */
.fs26-board-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fs26-board-col .bd-tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--fs-text);
}

.fs26-board-col .bd-tit h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--fs-text);
}

.fs26-board-col .bd-tit h3 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-board-col .bd-tit .more {
    font-size: 12px;
    color: var(--fs-text-hint);
    font-weight: 500;
}

.fs26-notice-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--fs-border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.fs26-notice-list li .dot {
    width: 6px;
    height: 6px;
    background: var(--fs-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.fs26-notice-list li .sbj {
    flex: 1;
    font-size: 14px;
    color: var(--fs-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fs26-notice-list li .sbj:hover {
    color: var(--fs-dark);
}

.fs26-notice-list li .new {
    background: var(--fs-dark);
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
    flex-shrink: 0;
}

.fs26-notice-list li .dt {
    font-size: 12px;
    color: var(--fs-text-hint);
    flex-shrink: 0;
}

.fs26-press-list .press-item {
    display: flex;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--fs-border-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fs26-press-list .press-item:hover .p-title {
    color: var(--fs-dark);
}

.fs26-press-list .p-thumb {
    width: 120px;
    height: 85px;
    min-width: 120px;
    background: var(--fs-bg-light);
    border-radius: 6px;
    overflow: hidden;
}

.fs26-press-list .p-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs26-press-list .p-text {
    flex: 1;
    min-width: 0;
}

.fs26-press-list .p-text .p-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--fs-text);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.fs26-press-list .p-text .p-desc {
    font-size: 13px;
    color: var(--fs-text-sub);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs26-press-list .p-text .p-meta {
    font-size: 11px;
    color: var(--fs-text-hint);
}

/* ============ Service Cards (프리미엄) ============ */
.fs26-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fs26-service-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 20px;
    padding: 50px 50px 50px 220px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.fs26-service-card:hover {
    color: inherit;
}

.fs26-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    transition: width 0.4s ease;
}

.fs26-service-card.gold::before {
    background: linear-gradient(135deg, #ffd700 0%, #f0a500 100%);
}

.fs26-service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.fs26-service-card .icon {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    z-index: 2;
    color: #fff;
}

.fs26-service-card .icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fs26-service-card.gold .icon svg {
    stroke: #0a0a0a;
}

.fs26-service-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.12);
}

.fs26-service-card.gold:hover {
    border-color: var(--fs-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
}

.fs26-service-card .eyebrow-mini {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: var(--fs-dark-soft);
    border-radius: 20px;
    align-self: flex-start;
}

.fs26-service-card.gold .eyebrow-mini {
    color: var(--fs-gold-dark);
    background: rgba(255, 215, 0, 0.12);
}

.fs26-service-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--fs-text);
    letter-spacing: -0.8px;
}

.fs26-service-card p {
    font-size: 14px;
    color: var(--fs-text-sub);
    line-height: 1.7;
    margin-bottom: 24px;
}

.fs26-service-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--fs-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 40px;
    transition: all 0.2s ease;
    align-self: flex-start;
    border: 2px solid var(--fs-dark);
}

.fs26-service-card .btn:hover {
    background: var(--fs-black);
    border-color: var(--fs-black);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.3);
}

.fs26-service-card.gold .btn {
    background: var(--fs-gold);
    color: #222;
    border-color: var(--fs-gold);
}

.fs26-service-card.gold .btn:hover {
    background: var(--fs-gold-dark);
    border-color: var(--fs-gold-dark);
    color: #fff;
}

/* ============ Final CTA (White with red accent) ============ */
.fs26-cta {
    background: var(--fs-dark-soft);
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid var(--fs-border);
}

.fs26-cta .label {
    display: inline-block;
    padding: 6px 18px;
    background: var(--fs-dark);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.fs26-cta h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--fs-text);
}

.fs26-cta h2 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-cta p {
    font-size: 16px;
    color: var(--fs-text-sub);
    margin-bottom: 24px;
}

.fs26-cta .phone {
    font-family: 'Rubik', sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 30px;
    display: block;
    color: var(--fs-dark);
}

.fs26-cta .btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.fs26-cta .btn {
    display: inline-block;
    padding: 16px 44px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.fs26-cta .btn-primary {
    background: var(--fs-dark);
    color: #fff;
}

.fs26-cta .btn-primary:hover {
    background: var(--fs-black);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.3);
}

.fs26-cta .btn-outline {
    border: 2px solid var(--fs-dark);
    color: var(--fs-dark);
    background: #fff;
}

.fs26-cta .btn-outline:hover {
    background: var(--fs-dark);
    color: #fff;
}

/* ============ Top GNB (Sticky) ============ */
.fs26-gnb {
    background: #fff;
    border-bottom: 1px solid var(--fs-border);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000 !important; /* 항상 최상위에 오도록 높은 값 지정 */
    transition: box-shadow 0.3s ease;
}

.fs26-gnb .gnb-burger {
    display: none; /* PC에서는 버거 메뉴 숨김 */
}

.fs26-gnb.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ============ Top Button (fixed) ============ */
.fs26-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--fs-border);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.fs26-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fs26-top-btn:hover {
    background: var(--fs-dark);
    border-color: var(--fs-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.25);
}

.fs26-top-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--fs-text);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
}

.fs26-top-btn:hover svg {
    stroke: #fff;
}

.fs26-top-btn .top-label {
    display: block;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rubik', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--fs-text-hint);
    letter-spacing: 1px;
}

.fs26-gnb .gnb-main {
    padding: 24px 0;
}

.fs26-gnb .gnb-main .fs26-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fs26-gnb .gnb-logo {
    flex-shrink: 0;
}

.fs26-gnb .gnb-logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 320px;
}

/* 푸터 로고 - GNB와 동일 src(renew_logo2.png)로 교체 */
.footer .footer-meta .footer-meta__side {
    position: relative;
}
.footer .footer-meta .footer-meta__side img {
    width: auto !important;
    height: 44px !important;
    max-width: 247px !important;
    opacity: 1 !important;
    content: url('../img/ib_logo.png?v=20260618') !important;
}

.fs26-gnb .gnb-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 52px;
}

.fs26-gnb .gnb-menu .menu-item {
    position: relative;
}

.fs26-gnb .gnb-menu .main-link {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 10px 0;
    letter-spacing: -0.4px;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.fs26-gnb .gnb-menu .main-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fs-dark);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.fs26-gnb .gnb-menu .menu-item:hover .main-link {
    color: var(--fs-dark);
}

.fs26-gnb .gnb-menu .menu-item:hover .main-link::after {
    width: 24px;
}

/* GNB 2depth 서브메뉴 PC용 드롭다운 디자인 */
.fs26-gnb .gnb-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 140px;
    z-index: 20000 !important; /* 다른 레이아웃 영역에 가려지지 않도록 z-index 최상위 설정 */
    display: flex !important; /* flex 레이아웃 항상 유지하여 transition 작동 보장 */
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* 숨겨져 있을 때 마우스 클릭/이벤트 방해 금지 */
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

/* 대메뉴와 서브메뉴 간의 간격 마우스 호버 브릿지 (호버 풀림 버그 방지) */
.fs26-gnb .gnb-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.fs26-gnb .gnb-menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* 마우스 이벤트 복구 */
    transform: translateX(-50%) translateY(0);
}

.fs26-gnb .gnb-menu .sub-menu a {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #444 !important;
    padding: 8px 16px !important;
    text-align: center;
    transition: all 0.15s ease !important;
    letter-spacing: -0.3px !important;
    display: block !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.fs26-gnb .gnb-menu .sub-menu a::after {
    display: none !important; /* 서브메뉴에는 언더라인 효과 제거 */
}

.fs26-gnb .gnb-menu .sub-menu a:hover {
    color: var(--fs-dark) !important;
    background: rgba(192, 4, 4, 0.04);
}


/* ============ Hero Banner (원본 1000x368 + 우측 리스트) ============ */
.fs26-hero {
    background: #fff;
    padding: 48px 0 0;
}

.fs26-hero .fs26-container {
    position: relative;
}

.fs26-hero-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    grid-template-rows: 340px;
    gap: 24px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.fs26-hero-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fs26-hero-slider .swiper-container2 {
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.fs26-hero-slider .swiper-wrapper,
.fs26-hero-slider .swiper-slide {
    height: 100%;
}

.fs26-hero-slider .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.fs26-hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 우측 배너 리스트 */
.fs26-hero-list {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.fs26-hero-list .list-head {
    flex-shrink: 0;
}

.fs26-hero-list .list-head {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fs26-hero-list .list-head::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #ffd700 0%, #f0a500 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.fs26-hero-list ul {
    flex: 1 1 auto;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.fs26-hero-list li {
    flex: 1 1 0;
    min-height: 0;
    min-width: 0;
    border-bottom: 1px solid var(--fs-border-light);
}

.fs26-hero-list li:last-child {
    border-bottom: none;
}

.fs26-hero-list li a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    gap: 12px;
}

.fs26-hero-list li a::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fs-dark-soft);
    color: var(--fs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    font-family: 'Rubik', sans-serif;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.fs26-hero-list li:nth-child(1) a::before { content: '01'; }
.fs26-hero-list li:nth-child(2) a::before { content: '02'; }
.fs26-hero-list li:nth-child(3) a::before { content: '03'; }
.fs26-hero-list li:nth-child(4) a::before { content: '04'; }
.fs26-hero-list li:nth-child(5) a::before { content: '05'; }
.fs26-hero-list li:nth-child(6) a::before { content: '06'; }

.fs26-hero-list li a:hover,
.fs26-hero-list li.active a {
    background: #fafbfc;
    color: var(--fs-dark);
    font-weight: 700;
    /* padding-left 24 → 20 : 활성 전환 시 텍스트 점프 방지 (Safari 전환 시 도드라짐) */
    padding-left: 20px;
}

.fs26-hero-list li a:hover::before,
.fs26-hero-list li.active a::before {
    background: var(--fs-dark);
    color: #fff;
}

.fs26-hero-list li a .title-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fs26-hero-slider .pagination2 {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.fs26-hero-slider .pagination2 .swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    font-size: 0;
    transition: all 0.2s ease;
}

.fs26-hero-slider .pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Hero 하단 3박스 (프리미엄 SVG 아이콘) */
.fs26-hero-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.fs26-hero-quick .q-card {
    padding: 32px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 14px;
    overflow: hidden;
}

.fs26-hero-quick .q-card::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.3s ease;
}

.fs26-hero-quick .q-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
}

.fs26-hero-quick .q-card:hover::after {
    opacity: 1;
    right: 20px;
}

.fs26-hero-quick .q-card .q-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    background: var(--fs-dark-soft);
    transition: all 0.3s ease;
}

.fs26-hero-quick .q-card .q-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--fs-dark);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fs26-hero-quick .q-card:hover .q-icon {
    background: var(--fs-dark);
}

.fs26-hero-quick .q-card:hover .q-icon svg {
    stroke: #fff;
}

.fs26-hero-quick .q-card .q-text {
    flex: 1;
    padding-right: 30px;
}

.fs26-hero-quick .q-card .q-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.fs26-hero-quick .q-card .q-desc {
    font-size: 13px;
    color: var(--fs-text-sub);
    letter-spacing: -0.2px;
}

/* ============ Video Section (신규) ============ */
.fs26-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fs26-video-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs26-video-card:hover {
    border-color: var(--fs-dark);
    box-shadow: var(--fs-shadow-hover);
    transform: translateY(-4px);
}

.fs26-video-card .v-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.fs26-video-card .v-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.fs26-video-card:hover .v-thumb img {
    opacity: 0.7;
    transform: scale(1.03);
}

.fs26-video-card .v-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: var(--fs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fs26-video-card:hover .v-thumb .play-btn {
    background: var(--fs-black);
    transform: translate(-50%, -50%) scale(1.1);
}

.fs26-video-card .v-thumb .play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.fs26-video-card .v-thumb .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--fs-dark);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.fs26-video-card .v-info {
    padding: 22px 26px;
}

.fs26-video-card .v-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--fs-text);
    margin-bottom: 6px;
}

.fs26-video-card .v-info p {
    font-size: 13px;
    color: var(--fs-text-sub);
}

/* ============ 수상내역 & 인증 섹션 (메인) ============ */
.fs26-awards {
    background: #fafbfc;
    padding: 70px 0;
    border-top: 1px solid var(--fs-border);
}

.fs26-awards .awards-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--fs-border);
}

.fs26-awards .awards-tabs button {
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--fs-text-hint);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    font-family: "Noto Sans KR", sans-serif;
}

.fs26-awards .awards-tabs button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--fs-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fs26-awards .awards-tabs button.active {
    color: var(--fs-text);
}

.fs26-awards .awards-tabs button.active::after {
    transform: scaleX(1);
}

.fs26-awards .awards-tabs button:hover {
    color: var(--fs-dark);
}

.fs26-awards .awards-panel {
    display: none;
}

.fs26-awards .awards-panel.active {
    display: block;
}

.fs26-awards .awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.fs26-awards .award-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 28px 22px;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fs26-awards .award-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(192, 4, 4, 0.1);
}

/* 엠블럼 심볼만 잘라서 보여주기 (가로 이미지의 왼쪽 부분) */
.fs26-awards .award-card .award-emblem {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #fafbfc;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    margin-bottom: 20px;
    border: 2px solid var(--fs-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fs26-awards .award-card:hover .award-emblem {
    border-color: var(--fs-dark);
    transform: scale(1.05);
}

.fs26-awards .award-card .award-year {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--fs-dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.fs26-awards .award-card .award-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fs-text);
    line-height: 1.5;
    letter-spacing: -0.3px;
}

/* 기존 footer-prize 섹션 숨기기 (우리가 새로 만든 수상 섹션으로 대체) */
.footer .footer-prize {
    display: none !important;
}

/* ============ Footer 화이트 톤 리뉴얼 ============ */
body > .footer,
#wrap ~ .footer {
    display: block !important;
    background: #fff !important;
    color: var(--fs-text-sub) !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: "Noto Sans KR", sans-serif !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
}

.footer .footer-prize {
    background: #fafbfc !important;
    padding: 40px 20px !important;
    text-align: center !important;
    border-top: 1px solid var(--fs-border) !important;
    border-bottom: 1px solid var(--fs-border) !important;
}

.footer .footer-prize a img {
    max-width: 1200px !important;
    width: 100% !important;
    height: auto !important;
    display: inline-block !important;
}

.footer .footer-menu {
    background: #fff !important;
    padding: 22px 0 !important;
    border-bottom: 1px solid var(--fs-border) !important;
}

.footer .footer-menu .footer-menu__inner {
    width: 1200px !important;
    max-width: calc(100% - 40px) !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0 !important;
    align-items: center !important;
}

.footer .footer-menu .footer-menu__inner a {
    color: var(--fs-text) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 6px 20px !important;
    border-right: 1px solid var(--fs-border) !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
    letter-spacing: -0.3px !important;
}

.footer .footer-menu .footer-menu__inner a:last-child {
    border-right: none !important;
}

.footer .footer-menu .footer-menu__inner a:hover {
    color: var(--fs-dark) !important;
}

.footer .footer-meta {
    background: #fff !important;
    padding: 50px 0 40px !important;
}

.footer .footer-meta .footer-meta__inner {
    width: 1200px !important;
    max-width: calc(100% - 40px) !important;
    margin: 0 auto !important;
    display: flex !important;
    gap: 50px !important;
    align-items: flex-start !important;
}

.footer .footer-meta .footer-meta__side {
    flex-shrink: 0 !important;
}

/* 푸터 로고 크기 override는 위에서 처리됨 */

.footer .footer-meta .footer-meta__main {
    flex: 1 !important;
}

.footer .footer-contact {
    display: flex !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid var(--fs-border) !important;
}

.footer .footer-contact__item {
    color: var(--fs-text-sub) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.footer .footer-contact__item span {
    color: var(--fs-text) !important;
    font-weight: 700 !important;
    margin-left: 6px !important;
    font-family: 'Rubik', 'Tahoma', sans-serif !important;
}

.footer .footer-info {
    color: var(--fs-text-sub) !important;
    font-size: 12px !important;
    line-height: 1.9 !important;
    margin-bottom: 18px !important;
}

.footer .footer-caution {
    color: var(--fs-text-sub) !important;
    font-size: 11px !important;
    line-height: 1.8 !important;
    padding: 16px 20px !important;
    background: #fafbfc !important;
    border-radius: 6px !important;
    border-left: 3px solid var(--fs-dark) !important;
    margin-bottom: 18px !important;
}

.footer .footer-copyright {
    color: var(--fs-text-hint) !important;
    font-size: 11px !important;
    font-family: 'Rubik', 'Tahoma', sans-serif !important;
    letter-spacing: 0.5px !important;
}

/* footer-tail: SNS 버튼 섹션 */
.footer .footer-tail {
    background: #fafbfc !important;
    padding: 22px 0 !important;
    border-top: 1px solid var(--fs-border) !important;
}

.footer .footer-tail .footer-tail__inner {
    width: 1200px !important;
    max-width: calc(100% - 40px) !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
}

.footer .footer-tail .footer-tail__main {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
}

/* SNS 영역(블로그/페이스북/인스타/유튜브/카카오) 숨김 */
.footer .footer-tail .footer-tail__side {
    display: none !important;
}

.footer .footer-tail .footer-tail__main a img {
    height: 34px !important;
    width: auto !important;
}

/* ============ Footer (사용안함 - 레거시) ============ */
.fs26-footer {
    background: #fafbfc;
    border-top: 1px solid var(--fs-border);
    padding: 50px 0 30px;
    color: var(--fs-text-sub);
    font-size: 13px;
    line-height: 1.8;
}

.fs26-footer .ft-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--fs-border);
    margin-bottom: 25px;
}

.fs26-footer .ft-brand .ft-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--fs-dark);
    margin-bottom: 12px;
}

.fs26-footer .ft-brand p {
    font-size: 12px;
    color: var(--fs-text-hint);
    line-height: 1.7;
}

.fs26-footer .ft-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--fs-text);
    margin-bottom: 14px;
}

.fs26-footer .ft-col ul li {
    padding: 5px 0;
    font-size: 13px;
}

.fs26-footer .ft-col ul li a {
    color: var(--fs-text-sub);
    transition: color 0.2s ease;
}

.fs26-footer .ft-col ul li a:hover {
    color: var(--fs-dark);
}

.fs26-footer .ft-contact .phone {
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--fs-dark);
    margin-bottom: 8px;
    display: block;
}

.fs26-footer .ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    color: var(--fs-text-hint);
}

.fs26-footer .ft-bottom .legal-links {
    display: flex;
    gap: 20px;
}

.fs26-footer .ft-bottom .legal-links a {
    color: var(--fs-text-sub);
}

.fs26-footer .ft-bottom .legal-links a.privacy {
    color: var(--fs-text);
    font-weight: 700;
}

.fs26-footer .ft-bottom .legal-links a:hover {
    color: var(--fs-dark);
}

.fs26-footer .ft-bottom .copy {
    font-size: 11px;
}

/* ============ Story Block (sub01 이미지 대체) ============ */
.fs26-story-block {
    background: #fafbfc;
    padding: 80px 20px;
    margin: 40px 0;
    border-radius: 20px;
    text-align: center;
}

.fs26-story-block .fs26-story-inner {
    max-width: 900px;
    margin: 0 auto;
}

.fs26-story-block .fs26-story-eyebrow {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 3px;
    padding: 6px 18px;
    background: var(--fs-dark-soft);
    border-radius: 20px;
    margin-bottom: 22px;
}

.fs26-story-block h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--fs-text);
    line-height: 1.4;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.fs26-story-block h2 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-story-block p {
    font-size: 16px;
    color: var(--fs-text-sub);
    line-height: 1.8;
    margin-bottom: 40px;
}

.fs26-story-block .fs26-story-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 35px;
    border-top: 1px solid var(--fs-border);
}

.fs26-story-block .fs26-story-stats .ss-item {
    text-align: center;
}

.fs26-story-block .fs26-story-stats .num {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--fs-dark);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.fs26-story-block .fs26-story-stats .lb {
    display: block;
    font-size: 13px;
    color: var(--fs-text-sub);
    font-weight: 500;
}

/* ============ Sub Page Common ============ */
.fs26-subpage {
    background: #fff;
    min-height: 60vh;
    padding-bottom: 100px;
}

/* sub-nav 구버전 정의 제거됨 - v7.5 신규 정의 사용 */

.fs26-page-header {
    text-align: center;
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.fs26-page-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 4px;
    margin-bottom: 16px;
    padding: 8px 22px;
    background: var(--fs-dark-soft);
    border-radius: 30px;
}

.fs26-page-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--fs-text);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.fs26-page-header h1 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-page-header .page-subtitle {
    font-size: 18px;
    color: var(--fs-text-sub);
    font-weight: 500;
    margin-bottom: 14px;
}

.fs26-page-header .sub-desc {
    font-size: 15px;
    color: var(--fs-text-hint);
    line-height: 1.7;
}

/* ============ 브랜드 가치 인용문 섹션 ============ */
.fs26-value-quote {
    background: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
}

.fs26-value-quote::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Georgia', serif;
    font-size: 140px;
    color: var(--fs-dark-soft);
    line-height: 1;
    font-weight: 900;
}

.fs26-value-quote .fs26-container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.fs26-value-quote .quote-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 6px 18px;
    background: var(--fs-dark-soft);
    border-radius: 20px;
}

.fs26-value-quote h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--fs-text);
    line-height: 1.5;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.fs26-value-quote h2 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-value-quote p {
    font-size: 17px;
    color: var(--fs-text-sub);
    line-height: 1.9;
}

.fs26-value-quote .promise-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.fs26-value-quote .promise-list .item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--fs-text);
}

.fs26-value-quote .promise-list .item .ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--fs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fs26-value-quote .promise-list .item .ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fs26-value-quote .signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--fs-border);
    display: inline-block;
}

.fs26-value-quote .signature .sig-label {
    font-size: 13px;
    color: var(--fs-text-hint);
    margin-bottom: 6px;
}

.fs26-value-quote .signature .sig-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--fs-text);
    letter-spacing: -0.3px;
}

.fs26-value-quote .signature .sig-name em {
    color: var(--fs-dark);
    font-style: normal;
    margin-right: 4px;
}

/* ============ 비전/미션 2카드 ============ */
.fs26-vision {
    background: #fafbfc;
    padding: 80px 0;
}

.fs26-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fs26-vision-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 20px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs26-vision-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
}

.fs26-vision-card .v-num {
    position: absolute;
    top: 40px;
    right: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--fs-dark-soft);
    line-height: 1;
}

.fs26-vision-card .v-label {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.fs26-vision-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--fs-text);
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
}

.fs26-vision-card p {
    font-size: 14px;
    color: var(--fs-text-sub);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============ 3가지 핵심 가치 ============ */
.fs26-core-values {
    background: #fff;
    padding: 20px 0 80px;
}

.fs26-core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fs26-core-value-card {
    text-align: center;
    padding: 50px 32px;
    border: 1px solid var(--fs-border);
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.fs26-core-value-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--fs-dark);
    border-radius: 2px;
}

.fs26-core-value-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(192, 4, 4, 0.1);
}

.fs26-core-value-card .cv-num {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--fs-dark);
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}

.fs26-core-value-card .cv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--fs-dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.fs26-core-value-card:hover .cv-icon {
    background: var(--fs-dark);
}

.fs26-core-value-card .cv-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--fs-dark);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.fs26-core-value-card:hover .cv-icon svg {
    stroke: #fff;
}

.fs26-core-value-card h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--fs-text-hint);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.fs26-core-value-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--fs-text);
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.fs26-core-value-card p {
    font-size: 14px;
    color: var(--fs-text-sub);
    line-height: 1.8;
}

/* ============ 핵심 성과 지표 ============ */
.fs26-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    color: #fff;
}

.fs26-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.fs26-stat-item {
    padding: 20px;
    position: relative;
}

.fs26-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
}

.fs26-stat-item .stat-num {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.fs26-stat-item .stat-num .unit {
    font-size: 22px;
    margin-left: 4px;
    opacity: 0.85;
}

.fs26-stat-item .stat-num .plus {
    font-size: 36px;
    color: #ffd700;
    margin-left: 2px;
}

.fs26-stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: -0.3px;
}

/* ============ 연혁 타임라인 ============ */
.fs26-history {
    background: #fff;
    padding: 100px 0;
}

.fs26-history-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.fs26-history-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 140px;
    width: 2px;
    background: var(--fs-border);
}

.fs26-history-item {
    display: flex;
    gap: 60px;
    padding: 24px 0;
    position: relative;
    align-items: flex-start;
}

.fs26-history-item::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 134px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--fs-dark);
    z-index: 1;
}

.fs26-history-item .year {
    width: 110px;
    min-width: 110px;
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--fs-dark);
    line-height: 1.2;
    text-align: right;
}

.fs26-history-item .content {
    flex: 1;
    padding: 20px 26px;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid var(--fs-border);
    transition: all 0.3s ease;
}

.fs26-history-item:hover .content {
    background: #fff;
    border-color: var(--fs-dark);
    transform: translateX(4px);
    box-shadow: var(--fs-shadow-hover);
}

.fs26-history-item .content .title {
    font-size: 16px;
    font-weight: 800;
    color: var(--fs-text);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.fs26-history-item .content .desc {
    font-size: 13px;
    color: var(--fs-text-sub);
    line-height: 1.7;
}

/* IB인베스트먼트소개 전용 */
.fs26-intro-block {
    margin-bottom: 80px;
}

.fs26-intro-block img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--fs-shadow);
}

.fs26-intro-video {
    max-width: 900px;
    margin: 50px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
    background: #000;
}

.fs26-intro-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.fs26-intro-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.fs26-intro-section-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--fs-text);
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.fs26-intro-section-title h2 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-intro-section-title p {
    font-size: 15px;
    color: var(--fs-text-sub);
}

/* ============ 분석시스템 카드 (이미지 없이 재구성) ============ */
.fs26-system {
    background: #fafbfc;
    padding: 100px 0;
}

.fs26-system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.fs26-system-card {
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 20px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.fs26-system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--fs-dark);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.fs26-system-card:hover {
    border-color: var(--fs-dark);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(192, 4, 4, 0.1);
    color: inherit;
}

.fs26-system-card:hover::before {
    transform: scaleY(1);
}

.fs26-system-card .s-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--fs-dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.fs26-system-card:hover .s-icon {
    background: var(--fs-dark);
}

.fs26-system-card .s-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--fs-dark);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.fs26-system-card:hover .s-icon svg {
    stroke: #fff;
}

.fs26-system-card .s-num {
    position: absolute;
    top: 40px;
    right: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--fs-dark-soft);
    line-height: 1;
    letter-spacing: -2px;
}

.fs26-system-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--fs-text);
    margin-bottom: 14px;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
}

.fs26-system-card h3 em {
    color: var(--fs-dark);
    font-style: normal;
}

.fs26-system-card p {
    font-size: 14px;
    color: var(--fs-text-sub);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.fs26-system-card .s-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--fs-dark);
}

.fs26-intro-news {
    margin-bottom: 80px;
}

.fs26-intro-news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.fs26-intro-news-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--fs-border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs26-intro-news-item:hover {
    border-color: var(--fs-dark);
    box-shadow: var(--fs-shadow-hover);
    transform: translateY(-2px);
}

.fs26-intro-news-item .thumb {
    width: 160px;
    height: 120px;
    min-width: 160px;
    background: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
}

.fs26-intro-news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs26-intro-news-item .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fs26-intro-news-item .text .title {
    font-size: 17px;
    font-weight: 700;
    color: var(--fs-text);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs26-intro-news-item .text .excerpt {
    font-size: 13px;
    color: var(--fs-text-sub);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.fs26-more-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.fs26-more-btn {
    display: inline-block;
    padding: 14px 48px;
    background: #fff;
    color: var(--fs-text);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--fs-border);
    border-radius: 40px;
    transition: all 0.2s ease;
}

.fs26-more-btn:hover {
    background: var(--fs-dark);
    color: #fff;
    border-color: var(--fs-dark);
}

/* ============ Responsive ============ */
@media (max-width: 1200px) {
    :root {
        --fs-container: 100%;
    }
    .fs26-container {
        padding: 0 20px;
    }
}

/* ============ v7.2: 우측 단축배너 + 실시간문의 FAB + Trust Bar 포인트 ============ */

/* ============ v7.4: 전화번호 아이콘 + tel-item 정렬 ============ */
.fs26-trust-item.tel-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fs26-trust-item.tel-item .num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 0;
}
.fs26-trust-item.tel-item .tel-ico {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(192,4,4,0.2));
}

/* ============ v7.5: 서브페이지 sticky nav + 인증 갤러리 + 간격 일정화 ============ */

/* GNB + Sub-nav 스택 (서브페이지) */
body.fs26-wrap .fs26-gnb {
    position: sticky;
    top: 0;
    z-index: 9990;
    background: #fff;
    transition: all 0.3s ease;
}
body.fs26-wrap .fs26-gnb.scrolled {
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.97);
}
body.fs26-wrap .fs26-gnb.scrolled .gnb-main {
    padding: 14px 0;
}

/* 서브 메뉴 네비 - 스크롤 따라옴 */
.fs26-sub-nav-bar {
    position: sticky;
    top: 84px;
    z-index: 95;
    background: #fff;
    border-top: 1px solid #eef0f5;
    border-bottom: 1px solid #e5e8ec;
    transition: top 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fs26-sub-nav-bar.scrolled {
    top: 64px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.fs26-sub-nav-bar .sub-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    flex-wrap: wrap;
}
.fs26-sub-nav-bar .sub-nav-wrap a {
    display: inline-block;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #565656;
    text-decoration: none;
    letter-spacing: -0.3px;
    position: relative;
    transition: color 0.2s ease;
}
.fs26-sub-nav-bar .sub-nav-wrap a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a 0%, #444444 100%);
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%) scaleX(1) !important;
    transform-origin: center !important;
    transition: width 0.3s ease;
    margin: 0 !important;
}
.fs26-sub-nav-bar .sub-nav-wrap a:hover::after,
.fs26-sub-nav-bar .sub-nav-wrap a.active::after {
    width: 60% !important;
    transform: translateX(-50%) !important;
}
.fs26-sub-nav-bar .sub-nav-wrap a:hover { color: #1a1a1a; }
.fs26-sub-nav-bar .sub-nav-wrap a.active {
    color: #1a1a1a;
    font-weight: 800;
}

/* 페이지 헤더 ↔ sub-nav 간격 일정화 */
body.fs26-wrap .fs26-page-header {
    padding: 80px 0 50px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    text-align: center;
    border-bottom: 1px solid #f0f2f6;
}
body.fs26-wrap .fs26-page-header .eyebrow {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(26,26,26,0.08);
    border-radius: 20px;
}
body.fs26-wrap .fs26-page-header h1 {
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 16px;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.2;
}
body.fs26-wrap .fs26-page-header h1 em {
    color: #1a1a1a;
    font-style: normal;
}
body.fs26-wrap .fs26-page-header .page-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #404040;
    margin-bottom: 6px;
}
body.fs26-wrap .fs26-page-header .sub-desc {
    font-size: 15px;
    color: #777;
    margin: 0;
}

/* 모든 서브 섹션 일정한 패딩 */
body.fs26-wrap .fs26-section {
    padding: 80px 0;
}
body.fs26-wrap .fs26-section.fs-soft {
    background: #fafbfc;
}
body.fs26-wrap .fs26-section + .fs26-section,
body.fs26-wrap .fs26-section + section {
    border-top: 1px solid #f0f2f6;
}

/* 인증·수상 탭 갤러리 */
.fs26-cert-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 28px;
}
.fs26-cert-tabs .cert-tab {
    padding: 12px 32px;
    background: #fff;
    border: 1.5px solid #e5e8ec;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #565656;
    cursor: pointer;
    transition: all 0.25s ease;
}
.fs26-cert-tabs .cert-tab:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}
.fs26-cert-tabs .cert-tab.active {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    border-color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(26,26,26,0.25);
}

.fs26-cert-panel { display: none; }
.fs26-cert-panel.active { display: block; }

.fs26-cert-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
}
.cert-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 14px;
    padding: 18px 26px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cert-card:hover {
    transform: translateX(6px);
    border-color: #1a1a1a;
    box-shadow: 0 14px 30px rgba(192,4,4,0.10);
}
.cert-card .cert-img {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f2f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}
.cert-card .cert-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.cert-card:hover .cert-img img {
    transform: scale(1.08);
}
.cert-card .cert-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    border-top: none;
    padding: 0;
}
.cert-card .cert-info .cert-year {
    font-family: 'Rubik','Tahoma',sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    background: rgba(26,26,26,0.08);
    border-radius: 20px;
}
.cert-card .cert-info .cert-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: left;
    line-height: 1.4;
    letter-spacing: -0.4px;
}

/* 더보기 버튼 */
.fs26-more-btn-wrap {
    text-align: center;
    margin-top: 36px;
}
.fs26-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: all 0.25s ease;
}
.fs26-more-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26,26,26,0.25);
}

/* 1024 이하 반응형 */
@media (max-width: 1024px) {
    .fs26-sub-nav-bar { top: 68px; }
    .fs26-sub-nav-bar.scrolled { top: 56px; }
    .fs26-sub-nav-bar .sub-nav-wrap a { padding: 14px 14px; font-size: 13px; }
}
@media (max-width: 640px) {
    .cert-card { padding: 14px 16px; gap: 14px; }
    .cert-card .cert-img { width: 64px; height: 64px; }
    .cert-card .cert-info .cert-title { font-size: 15px; }
    body.fs26-wrap .fs26-page-header h1 { font-size: 32px; }
    body.fs26-wrap .fs26-section { padding: 60px 0; }
}

/* ============ v7.6: 언론에 비친 IB인베스트먼트 단독 섹션 ============ */
.fs26-press-section {
    background: #fff;
    padding: 60px 0;
}
.fs26-press-section.fs26-awards .fs26-header {
    margin-bottom: 32px;
}
.fs26-press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.fs26-press-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}
.fs26-press-card:hover {
    transform: translateY(-8px);
    border-color: #1a1a1a;
    box-shadow: 0 20px 40px rgba(192,4,4,0.14);
}
.fs26-press-card .press-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #eef0f5 100%);
}
.fs26-press-card .press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.fs26-press-card:hover .press-thumb img {
    transform: scale(1.08);
}
.fs26-press-card .press-thumb .no-thumb {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bec4cc;
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
}
.fs26-press-card .press-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(192,4,4,0.35);
}
.fs26-press-card .press-info {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fs26-press-card .press-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: -0.4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fs26-press-card:hover .press-title { color: #1a1a1a; }
.fs26-press-card .press-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    letter-spacing: -0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fs26-press-card .press-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0f2f6;
    font-size: 11px;
    color: #8a8f98;
    letter-spacing: -0.2px;
}
.fs26-press-card .media-name {
    font-weight: 700;
    color: #1a1a1a;
}
.fs26-press-more {
    text-align: center;
    margin-top: 28px;
}
.fs26-press-more .press-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: all 0.25s ease;
}
.fs26-press-more .press-more-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(192,4,4,0.28);
}
@media (max-width: 1024px) {
    .fs26-press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .fs26-press-grid { grid-template-columns: 1fr; }
    .fs26-press-section { padding: 60px 0; }
}

/* ============ v7.7: 언론보도 Swiper 캐러셀 (duo.co.kr 스타일) ============ */
.fs26-press-swiper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4px 0 36px;
}
.fs26-press-container {
    overflow: hidden;
    padding: 4px 4px 24px;
}

/* 카드 호버 강조 */
.fs26-press-container .swiper-slide-active .fs26-press-card,
.fs26-press-container .fs26-press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(192,4,4,0.14);
    border-color: #1a1a1a;
}

/* 좌우 네비게이션 */
.fs26-press-swiper .press-nav {
    position: absolute;
    top: 42%;
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(20,30,60,0.10);
    transition: all 0.25s ease;
    z-index: 10;
    color: #1a1a1a;
}
.fs26-press-swiper .press-nav svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fs26-press-swiper .press-nav:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    border-color: #1a1a1a;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 18px 36px rgba(192,4,4,0.35);
}
.fs26-press-swiper .press-prev { left: -10px; transform: translateY(-50%); }
.fs26-press-swiper .press-next { right: -10px; transform: translateY(-50%); }

/* 페이지네이션 */
.fs26-press-swiper .press-pagination {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}
.fs26-press-swiper .press-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #d8dde5;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fs26-press-swiper .press-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(90deg, #1a1a1a 0%, #444444 100%);
    box-shadow: 0 4px 10px rgba(26,26,26,0.3);
}

/* 기존 grid 룰 비활성화 (swiper 사용) */
.fs26-press-section .fs26-press-grid { display: none !important; }

/* 모바일 - nav 숨김 */
@media (max-width: 1024px) {
    .fs26-press-swiper .press-nav { display: none; }
    .fs26-press-swiper { padding: 0 20px 60px; }
}
@media (max-width: 640px) {
    .fs26-press-swiper { padding: 0 16px 50px; }
}


/* ─── GNB 공통 sticky (메인/서브 통일) ─── */
.fs26-gnb {
    position: sticky !important;
    top: 0 !important;
    z-index: 9990 !important;
    background: #fff;
    transition: all 0.3s ease;
}
.fs26-gnb.scrolled {
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.97);
}
.fs26-gnb.scrolled .gnb-main { padding: 14px 0; }

/* ================================================================ */
/* === DO NOT EDIT BELOW === v7-LOCK : Trust Bar + Press 보호 규칙 === */
/* 사용자가 명시적으로 수정 요청하지 않는 한 이 블록은 건드리지 말 것 */
/* ================================================================ */

/* ─── Trust Bar v7.2 디자인 (고정) ─── */
.fs26-trust-bar {
    background: linear-gradient(135deg, #fafbfc 0%, #f4f6fa 100%) !important;
    position: relative;
    overflow: hidden;
}
.fs26-trust-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent 0%, #1a1a1a 30%, #ffd700 50%, #1a1a1a 70%, transparent 100%);
    opacity: 0.85;
    z-index: 1;
}
.fs26-trust-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #d8dde5, transparent);
    z-index: 1;
}
.fs26-trust-bar .fs26-trust-item {
    transition: transform 0.25s ease;
    position: relative;
}
.fs26-trust-bar .fs26-trust-item:hover {
    transform: translateY(-3px);
}
.fs26-trust-bar .fs26-trust-item .num {
    font-family: 'Rubik','Tahoma',sans-serif !important;
    font-size: 40px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: inline-block !important;
    white-space: nowrap !important;
    color: transparent !important;
}
.fs26-trust-bar .fs26-trust-item:nth-child(1) .num {
    background: linear-gradient(135deg, #1a1a1a 0%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fs26-trust-bar .fs26-trust-item:nth-child(3) .num {
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fs26-trust-bar .fs26-trust-item:last-child .num {
    background: linear-gradient(135deg, #1a1a1a 0%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 30px !important;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.fs26-trust-bar .fs26-trust-item:last-child {
    padding: 0 18px;
}
.fs26-trust-bar .fs26-trust-item .lb {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #565656 !important;
    letter-spacing: -0.2px;
    position: relative;
    padding-top: 8px !important;
}
.fs26-trust-bar .fs26-trust-item .lb::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    opacity: 0.4;
}

/* ─── tel-item (전화번호 아이콘) 고정 ─── */
.fs26-trust-bar .fs26-trust-item.tel-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fs26-trust-bar .fs26-trust-item.tel-item .num {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-size: 32px !important;
    line-height: 1;
    margin-bottom: 0;
}
.fs26-trust-bar .fs26-trust-item.tel-item .tel-ico {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(192,4,4,0.2));
}

/* ─── Press Section Swiper 높이 오버라이드 (고정) ─── */
/* swiper.min.css 의 .swiper-wrapper/.swiper-slide { height: 100% } 를 억제 */
.fs26-press-section .fs26-press-container .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
    height: auto !important;
}
.fs26-press-section .fs26-press-container .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    box-sizing: border-box;
}
.fs26-press-section .fs26-press-container .swiper-slide .fs26-press-card {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
}
.fs26-press-section .fs26-press-container .fs26-press-card .press-info {
    flex: 0 0 auto !important;
}

/* ================================================================ */
/* === END DO NOT EDIT === */
/* ================================================================ */


/* === CERTUI-BLOCK v2 === tight 4-per-row grid === */
.fs26-awards .awards-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    grid-template-columns: none !important;
}
.fs26-awards .awards-grid .award-card {
    flex: 0 0 220px !important;
    width: 220px !important;
    max-width: 220px !important;
    box-sizing: border-box !important;
}
@media (max-width: 1024px) {
    .fs26-awards .awards-grid { max-width: 720px !important; }
    .fs26-awards .awards-grid .award-card { flex: 0 0 220px !important; width: 220px !important; }
}
@media (max-width: 720px) {
    .fs26-awards .awards-grid { max-width: 480px !important; }
    .fs26-awards .awards-grid .award-card { flex: 0 0 220px !important; width: 220px !important; }
}
@media (max-width: 480px) {
    .fs26-awards .awards-grid { max-width: 100% !important; }
    .fs26-awards .awards-grid .award-card { flex: 0 0 100% !important; width: 100% !important; max-width: 280px !important; }
}

.fs26-awards .fs26-more-banner {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.fs26-awards .fs26-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.3px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.25), 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
}
.fs26-awards .fs26-btn-more::after {
    content: '\2192';
    font-size: 18px;
    transition: transform 0.2s ease;
}
.fs26-awards .fs26-btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192, 4, 4, 0.35), 0 4px 10px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #d40505 0%, #a00202 100%);
}
.fs26-awards .fs26-btn-more:hover::after { transform: translateX(4px); }
@media (max-width: 480px) {
    .fs26-awards .fs26-btn-more { padding: 14px 32px; font-size: 14px; }
}
/* === END CERTUI === */

/* === LBSUB-BLOCK === trust bar subtitle === */
.fs26-trust-item .lb { display: flex; flex-direction: column; align-items: center; line-height: 1.3; }
.fs26-trust-item .lb-sub {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #8a8f9a;
    letter-spacing: -0.2px;
}
/* === END LBSUB === */







/* === HEROTRUST-GAP === spacing between hero CTA and trust bar === */
.fs26-hero-quick { margin-bottom: 8px; }
.fs26-trust-bar { margin-top: 40px; }
@media (max-width: 720px) {
    .fs26-trust-bar { margin-top: 28px; }
}
/* === END HEROTRUST === */






/* === GNBTOP-BLOCK === red line: primary GNB menu-width only === */
.fs26-gnb { border-top: none !important; }
.fs26-gnb::before { content: none !important; }

/* Primary GNB: shrink .gnb-menu to content width, apply border-top */
.fs26-gnb .gnb-menu {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    width: auto !important;
    justify-content: flex-end !important;
    position: relative;
    padding-top: 12px !important;
    /* border-top: 2px solid #1a1a1a !important; */
}

@media (min-width: 1024px) {
    .fs26-gnb .gnb-menu {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, calc(-50% + 6px)) !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }
}
.fs26-gnb .gnb-menu::before { content: none !important; }
.fs26-gnb .gnb-menu a:first-of-type::before { content: none !important; }

/* Sub nav bar: explicitly no red line */
.fs26-sub-nav-bar .sub-nav-wrap {
    border-top: none !important;
}
.fs26-sub-nav-bar .sub-nav-wrap::before { content: none !important; }
/* === END GNBTOP === */

/* === DISCLAIMER-BLOCK === subtle perf disclaimer box === */
.fs26-perf-disc {
    margin: 28px auto 0;
    max-width: 1180px;
    padding: 0 20px;
}
.fs26-perf-disc__inner {
    position: relative;
    background: #f7f8fa;
    border: 1px solid #eceff3;
    border-left: 3px solid #1a1a1a;
    border-radius: 8px;
    padding: 14px 18px 14px 20px;
    color: #5f6470;
    font-size: 11.5px;
    line-height: 1.75;
    letter-spacing: -0.2px;
}
.fs26-perf-disc__label {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.fs26-perf-disc p {
    margin: 0;
    color: #5f6470;
    font-size: 11.5px;
    line-height: 1.75;
}
.fs26-perf-disc p b {
    color: #333;
    font-weight: 700;
}
@media (max-width: 720px) {
    .fs26-perf-disc { padding: 0 16px; }
    .fs26-perf-disc__inner { padding: 12px 14px; font-size: 11px; }
    .fs26-perf-disc p { font-size: 11px; line-height: 1.7; }
}

/* small inline annotation under table headings */
.fs26-perf-note {
    display: block;
    font-size: 11px;
    color: #8a8f9a;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 6px;
    letter-spacing: -0.2px;
}
/* === END DISCLAIMER === */


/* === FOOTER-CAUTION-ROW === full-width side-by-side disclaimers === */
.footer-meta > .footer-caution-row,
.footer-meta .footer-caution-row {
    width: 1200px !important;
    max-width: calc(100% - 40px) !important;
    margin: 18px auto 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    align-items: stretch !important;
}
.footer-caution-row .footer-caution {
    flex: 1 1 0 !important;
    min-width: 260px !important;
    margin-bottom: 0 !important;
}
@media (max-width: 720px) {
    .footer-caution-row { gap: 12px !important; }
    .footer-caution-row .footer-caution { flex: 1 1 100% !important; }
}
/* === END FOOTER-CAUTION-ROW === */

/* === FONT-NORMALIZE === common.css/mainCss.css의 Dotum/굴림 강제를 .fs26-wrap 영역에서 차단 === */
/* 메인은 body.fs26-wrap, 서브는 div.fs26-wrap — 두 패턴 모두 커버
 * div/span 은 의도적으로 제외: inherit 으로 자연 전파되며,
 * 명시된 Rubik/Tahoma 영역(카운터·가격·배지 등)을 침범하지 않게 함 */
.fs26-wrap,
.fs26-wrap td,
.fs26-wrap th,
.fs26-wrap table,
.fs26-wrap p,
.fs26-wrap li,
.fs26-wrap dt,
.fs26-wrap dd,
.fs26-wrap select,
.fs26-wrap input,
.fs26-wrap textarea,
.fs26-wrap button,
.fs26-wrap label,
.fs26-wrap h1,
.fs26-wrap h2,
.fs26-wrap h3,
.fs26-wrap h4,
.fs26-wrap h5,
.fs26-wrap h6 {
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
.fs26-wrap a:link,
.fs26-wrap a:visited,
.fs26-wrap a:hover,
.fs26-wrap a:active {
    font-family: inherit !important;
}
/* === END FONT-NORMALIZE === */

/* === HEROLIST-RENDER-FIX === Hero 우측 "IB인베스트먼트 주요 서비스" Safari 렌더 보강 === */
.fs26-hero-list li:nth-child(1) a::before { content: '01'; }
.fs26-hero-list li:nth-child(2) a::before { content: '02'; }
.fs26-hero-list li:nth-child(3) a::before { content: '03'; }
.fs26-hero-list li:nth-child(4) a::before { content: '04'; }
.fs26-hero-list li:nth-child(5) a::before { content: '05'; }
.fs26-hero-list li:nth-child(6) a::before { content: '06'; }
.fs26-hero-list li a::before {
    font-family: 'Rubik', 'Tahoma', 'Helvetica Neue', Arial, sans-serif;
    line-height: 22px;
    text-align: center;
}
.fs26-hero-list li.active a,
.fs26-hero-list li a:hover {
    opacity: 1;
    visibility: visible;
}
.fs26-hero-list li.active a .title-text,
.fs26-hero-list li a:hover .title-text {
    opacity: 1;
    visibility: visible;
}
/* === END HEROLIST-RENDER-FIX === */


/* === HEROLIST-SAFARI8-COMPREHENSIVE-FIX (2026-05-19) ===
 * Safari WebKit hero-list 전면 재정렬 — 칸/글씨/롤오버 통합 fix
 * 원인: grid(340px) → flex(height:100%) → nested flex(flex:1 1 0; min-height:0) 의
 *      마지막 단계에서 Safari 가 <li> 들을 0px 로 collapse + 정렬 깨짐.
 * 해법: <ul>/<li> 의 nested flex 분배를 끄고 explicit height 명시.
 *      hover 시 font-weight 변경 제거 → 글자 너비 변동으로 인한 흔들림 제거. */
.fs26-hero-list {
    height: 340px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}
.fs26-hero-list .list-head {
    height: 50px;
    min-height: 50px;
    flex: none;
    box-sizing: border-box;
}
.fs26-hero-list ul {
    display: block;
    flex: none;
    height: 290px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.fs26-hero-list li {
    display: block;
    flex: none;
    height: 72.5px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--fs-border-light);
}
.fs26-hero-list li:last-child { border-bottom: none; }
.fs26-hero-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    transition: background-color .2s ease, color .2s ease;
}
.fs26-hero-list li a::before {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    font-family: 'Rubik', 'Tahoma', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
    background: var(--fs-dark-soft);
    color: var(--fs-dark);
    transition: background-color .2s ease, color .2s ease;
}
.fs26-hero-list li a .title-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fs26-hero-list li a:hover,
.fs26-hero-list li.active a {
    background: #fafbfc;
    color: var(--fs-dark);
}
.fs26-hero-list li a:hover::before,
.fs26-hero-list li.active a::before {
    background: var(--fs-dark);
    color: #fff;
}
/* === END HEROLIST-SAFARI8-COMPREHENSIVE-FIX === */

/* 모바일 전용 네비게이션은 PC에서 숨김 */
.fs26-mobile-nav {
    display: none !important;
}
