/* ─── Hero: 2-col (images | right) ────────────────────────────────────────── */

.hs-hero {
    display: grid;
    /* 헤더(로고 영역) 제외한 화면 높이에 딱 맞춤, 좌측 이미지는 4:5 고정 */
    --hs-hero-offset: 124px;
    /* 화면 높이 기준이되, 창 폭이 좁아지면 좌측(폭의 최대 50%, 4:5) 기준으로 함께 축소 */
    --hs-hero-h: max(560px, min(calc(100vh - var(--hs-hero-offset)), calc((100vw - 2 * var(--programs-pad, 24px)) * 0.625)));
    height: var(--hs-hero-h);
    /* 좌측은 4:5 기준이되, 우측 콘텐츠 최소 320px 보장 — 부족하면 좌측이 대신 줄어듦(크롭) */
    grid-template-columns: min(calc(var(--hs-hero-h) * 4 / 5), calc(100% - 328px)) minmax(0, 1fr);
    overflow: hidden;
    border-bottom: 1px solid var(--grey-soft);
}

/* site-main의 padding을 상쇄해 hero를 전체 폭으로 확장 */
body.home .hs-hero {
    margin-inline: calc(-1 * var(--programs-pad));
}

/* ── 좌: 슬라이드 ── */
.hs-hero__images {
    position: relative;
    overflow: hidden;
    background: var(--grey-soft);
    border-right: 1px solid var(--grey-soft);
}

.hs-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.9s ease;
}

.hs-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
}

/* 나가는 슬라이드: 새 슬라이드 아래에서 블러 아웃 */
.hs-hero__slide.is-leaving {
    opacity: 1;
    z-index: 1;
}

.hs-hero__slide-placeholder {
    width: 100%;
    height: 100%;
    background: var(--grey-light);
}

/* ── 우: 전체 래퍼 ── */
.hs-hero__right {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* 우 상단: OPEN TODAY 바 + 프로그램 포스터 */
.hs-hero__top {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--grey-soft);
    overflow: hidden;
    min-height: 0; /* 우측 콘텐츠가 히어로 높이를 넘지 않게 축소 허용 */
}

.hs-hero__today {
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 1px solid var(--grey-soft);
}

/* 스크린리더 전용 */
.hs-hours-mq__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* 정적 폴백 (no-JS) */
.hs-hours-mq__text {
    display: block;
    padding: 7px 20px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* JS 구동 마퀴 */
.hs-hours-mq__inner {
    display: flex;
    will-change: transform;
}

.hs-hours-mq__track {
    display: flex;
    flex-shrink: 0;
}

.hs-hours-mq__unit {
    display: inline-block;
    padding: 7px 32px 7px 0;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hs-hero__poster {
    flex: 1;
    display: block;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    min-height: 0;
}

/* 이미지가 포스터 영역을 가득 채움 (배경색 테두리 없음) */
.hs-hero__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
}

/* 이미지 좌상단 사각 태그 */
.hs-hero__poster-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 6px 12px;
    background: #000;
    color: #FAFAFA;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

/* 우 하단: 프로그램 정보 */
.hs-hero__prog {
    flex-shrink: 0;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hs-hero__prog-title {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.01em;
}

.hs-hero__prog-meta {
    margin: 0;
    border-top: 1px solid var(--grey-soft);
}

.hs-hero__prog-row {
    display: grid;
    grid-template-columns: 4em 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-soft);
    align-items: baseline;
}

.hs-hero__prog-row dt {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.03em;
}

.hs-hero__prog-row dd {
    margin: 0;
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.hs-hero__prog-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.15s ease;
}

.hs-hero__prog-btn:hover {
    opacity: 0.8;
}

/* 반응형 */
@media (max-width: 480px) {
    .hs-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }
    .hs-hero__images {
        border-right: none;
        min-height: 280px;
    }
    .hs-hero__prog-title {
        font-size: 18px;
    }
}

/* 모션 감소: 애니메이션 비활성화 */
@media (prefers-reduced-motion: reduce) {
    .hs-hero__slide          { transition: none; }
    .hs-hero__slide img,
    .hs-hero__slide video,
    .hs-hero__slide.is-active img,
    .hs-hero__slide.is-leaving img {
        animation: none;
        filter: none;
    }
}


/* ─── Books Marquee Strip ──────────────────────────────────────────────────── */

.hs-books {
    border-bottom: 1px solid var(--grey-soft);
    background: var(--bg);
    overflow: hidden;
}

.hs-books__label {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 28px 0 16px;
    margin: 0;
}

.hs-books__viewport {
    overflow: hidden;
}

/* JS가 삽입하는 내부 flex 래퍼 */
.hs-books__inner {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.hs-books__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0 8px 0 0; /* 복제본과의 자연스러운 이음 */
}

.hs-books__item {
    flex-shrink: 0;
}

.hs-books__link {
    display: block;
    text-decoration: none;
    outline-offset: 2px;
}

.hs-books__img {
    display: block;
    height: clamp(180px, 14.5vw, 340px); /* 화면 폭에 비례해 높이도 확대 */
    aspect-ratio: 3 / 4;
    max-width: none;
    object-fit: cover;
}

/* 캡션: 이미지 아래에 고정 높이 공간 미리 확보 → 레이아웃 점프 없음 */
.hs-books__caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 40px;
    padding: 7px 2px 0;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.hs-books__link:hover .hs-books__caption,
.hs-books__link:focus-visible .hs-books__caption {
    opacity: 1;
}

.hs-books__caption-title {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.hs-books__caption-author {
    display: block;
    font-size: 10px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

/* 좁은 화면 */
@media (max-width: 640px) {
    .hs-books__img {
        height: 150px;
        /* aspect-ratio 유지, width는 브라우저가 자동 계산 */
    }
}

/* hover 불가 환경 (터치): 캡션 기본 노출 */
@media (hover: none) {
    .hs-books__caption {
        opacity: 1;
    }
}

/* 모션 감소: 마퀴 정지, 가로 스크롤로 대체 */
@media (prefers-reduced-motion: reduce) {
    .hs-books__viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .hs-books__inner {
        will-change: auto;
        transform: none !important;
    }
    .hs-books__caption {
        opacity: 1;
    }
}


/* ─── Program Featured Card ─────────────────────────────────────────────────── */

.hs-prog-feat {
    padding-bottom: 40px;
}

.hs-prog-feat__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-decoration: none;
    overflow: hidden;
    min-height: 200px;
}

.hs-prog-feat__img {
    overflow: hidden;
    background: var(--grey-soft);
}

.hs-prog-feat__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hs-prog-feat__card:hover .hs-prog-feat__img img {
    transform: scale(1.03);
}

.hs-prog-feat__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 40px;
    text-align: center;
    background: var(--black);
    gap: 6px;
}

.hs-prog-feat__title-kr {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hs-prog-feat__title-en {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 0.01em;
}

.hs-prog-feat__date {
    margin: 14px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.6;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .hs-prog-feat__card {
        grid-template-columns: 1fr;
    }
    .hs-prog-feat__img {
        min-height: 200px;
    }
    .hs-prog-feat__body {
        padding: 32px 24px;
    }
    .hs-prog-feat__title-kr {
        font-size: 17px;
    }
}

/* Home alignment overrides: keep storefront sections inside the site-main padding. */
body.home .hs-hero,
.site-main--home .hs-hero {
    width: 100%;
    margin-inline: 0;
    column-gap: 8px; /* BOOKS 탭 카드 간격과 동일 */
    font-family: var(--font-en);
    border-bottom: 0;
}

body.home .hs-books,
.site-main--home .hs-books {
    margin-top: 4px;
    border-bottom: 0.8px solid var(--border);
}

.hs-hero__images {
    border-right: 0;
}

.hs-hero__top,
.hs-hero__today,
.hs-hero__prog-meta,
.hs-hero__prog-row {
    border-color: var(--border);
    border-width: 0.8px;
}

.hs-hours-mq__text,
.hs-hours-mq__unit,
.hs-hero__prog-title,
.hs-books,
.hs-books__label,
.hs-books__caption-title,
.hs-prog-feat,
.hs-prog-feat__title-en {
    font-family: var(--font-en);
}

.hs-hero__prog-row dt,
.hs-hero__prog-row dd,
.hs-hero__prog-btn,
.hs-books__caption-author,
.hs-prog-feat__title-kr,
.hs-prog-feat__date {
    font-family: var(--font-kr);
    letter-spacing: -0.02em; /* 문체고딕 자간 보정 */
}

.hs-hero__prog-row dt,
.hs-hero__prog-row dd,
.hs-hero__prog-btn,
.hs-prog-feat__title-kr,
.hs-prog-feat__date {
    font-weight: 500;
}

body.home .hs-prog-feat .container,
.site-main--home .hs-prog-feat .container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
}


/* OPEN TODAY 마퀴: GT America Medium 고정, 자간 0 */
.hs-hours-mq__text,
.hs-hours-mq__unit {
    font-family: "GT America_Medium", "GT America Medium", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.02em;
}


/* 홈 최상단(로고 아래) 구분선 제거 */
body.home .archive-header__inner::after,
.site-main--home .archive-header__inner::after {
    display: none;
}


/* ─── 홈 섹션 헤더 (BOOKS / ARTICLES / FEATURED — 아카이브 타이틀과 동일) ──── */

.hs-sec-header {
    display: flex;
    align-items: center; /* VIEW ALL을 타이틀 높이 중앙에 정렬 */
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 0; /* 하단선 제거 — 콘텐츠가 선 위치까지 올라옴 */
}

.hs-sec-header__title {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em; /* ARTICLES 탭과 동일 */
    line-height: 1;
    margin: 0;
    color: var(--black);
    text-decoration: none;
}

/* BOOKS 탭 자간과 동일 */
.hs-books .hs-sec-header__title {
    letter-spacing: -0.03em;
}

/* VIEW ALL > — 각 탭 필터 버튼과 동일한 서체/크기 */
.hs-sec-header__see-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
    padding: 5px 10px;
    margin: -5px -10px; /* 레이아웃 이동 없이 호버 배경 영역 확보 */
    border-radius: 2px;
    transition: background 0.12s ease;
}

.hs-sec-header__see-all-arrow {
    width: 12px;
    height: 12px;
    display: block;
}

/* 드롭다운 패널과 동일한 재질 */
.hs-sec-header__see-all:hover {
    background: color-mix(in srgb, var(--grey-middle) 70%, transparent);
    backdrop-filter: blur(36px) saturate(1.5);
    -webkit-backdrop-filter: blur(36px) saturate(1.5);
}

body.home .hs-books .hs-sec-header,
.site-main--home .hs-books .hs-sec-header {
    margin-bottom: 0; /* 콘텐츠가 기존 선 위치에서 시작 */
}


/* ─── 홈 북 마퀴: greyscale + black overlay 호버 (BOOKS 탭과 동일) ─────────── */

body.home .hs-books,
.site-main--home .hs-books {
    border-bottom: 0;
    margin-top: 40px;
}

.hs-books__viewport {
    padding-bottom: 40px; /* 섹션 하단 여백 */
}

.hs-books__cover {
    display: block;
    position: relative;
    overflow: hidden;
    background: #000; /* contain 표지의 여백을 검정으로 채움 */
}

/* 3:4에서 벗어난 표지: 크롭 없이 전체 표시 */
.hs-books__img--contain {
    object-fit: contain;
}

.hs-books__cover .hs-books__img {
    transition: filter 0.25s ease;
}

.hs-books__link:hover .hs-books__img,
.hs-books__link:focus-visible .hs-books__img {
    filter: grayscale(1);
}

.hs-books__hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.25s ease;
    padding: 12px;
    text-align: center;
}

.hs-books__link:hover .hs-books__hover,
.hs-books__link:focus-visible .hs-books__hover {
    opacity: 1;
}

.hs-books__hover-title {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: #FAFAFA;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hs-books__hover-author {
    font-family: var(--font-kr);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.02em; /* 문체고딕 자간 보정 */
    line-height: 1.4;
    color: #FAFAFA;
}

@media (prefers-reduced-motion: reduce) {
    .hs-books__hover { transition: none; }
}


/* ─── 홈: 최근 아티클 밴드 (frosted glass 재질) ────────────────────────────── */

.hs-arts {
    margin-top: 0; /* 위 섹션의 하단 48px가 간격 역할 */
}

.hs-arts .hs-sec-header {
    margin-bottom: 0;
}

/* 배경 패널 없이 카드 2개만 노출 */
.hs-arts__glass {
    padding: 0;
}

.hs-arts__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px; /* 사이트 공통 그리드 간격 */
    list-style: none;
    margin: 0;
    padding: 0;
}

.hs-arts__card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--black);
    border-radius: 0;
    padding: 14px;
    text-decoration: none;
}

.hs-arts__thumb {
    flex-shrink: 0;
    width: clamp(120px, 10vw, 220px); /* 화면 폭에 비례해 확대 */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--grey-middle);
    display: block;
    border-radius: 0;
    position: relative;
}

.hs-arts__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.25s ease;
}

/* 호버 시 썸네일 변화 없음 (흑백·검정 오버레이 제거) */

.hs-arts__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding-top: 4px;
}

.hs-arts__meta {
    font-family: var(--font-en);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
}

/* 우측 프로그램 타이틀(국문 18/영문 13)과 동일 스타일 */
.hs-arts__titles {
    display: block;
}

/* KR 모드에선 국문 제목만, EN 모드에선 영문 제목만 — 동일 크기 */
.hs-arts__title-kr,
.hs-arts__title-en {
    display: -webkit-box;
    font-family: var(--font-kr);
    font-size: 12.5px; /* 14px에서 10% 축소 */
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 13.5px;
    color: var(--white);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hs-arts__title-kr.is-latin,
.hs-arts__title-en {
    font-family: var(--font-en);
}

/* 언어 전환(hidden 속성) 대응 — display 지정보다 우선 */
.hs-arts__title-kr[hidden],
.hs-arts__title-en[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .hs-arts__grid {
        grid-template-columns: 1fr;
    }
    .hs-arts__thumb {
        width: 110px;
    }
    /* 이벤트(hero) → BOOKS 간격을 BOOKS → ARTICLES 간격(40px)과 동일하게 */
    body.home .hs-hero__prog,
    .site-main--home .hs-hero__prog {
        padding-bottom: 0; /* 기본 규칙보다 특이도 높여 모바일에서 실제 적용 */
    }
}


/* ─── 홈 우측 프로그램: 상세 페이지 디자인 적용 ────────────────────────────── */

.hs-hero__prog {
    padding: 16px 0 24px; /* 좌우 0 — 메타 표/버튼이 상단 이미지 폭과 일치 */
    gap: 12px;
}

.hs-hero__prog-titles {
    margin: 0;
    padding-left: 2px; /* 좌측 이미지와의 시각적 여유 */
}

.hs-hero__prog-title-kr {
    margin: 0;
    font-family: var(--font-kr);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 20px;
    color: var(--black);
}

.hs-hero__prog-title-en {
    margin: 3px 0 0;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 18px;
    color: var(--black);
}

body.home .hs-hero__prog-meta,
.site-main--home .hs-hero__prog-meta {
    margin: 0;
    border-top: 0.8px solid var(--border);
}

body.home .hs-hero__prog-row,
.site-main--home .hs-hero__prog-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 8px;
    padding: 1px 0 2px 2px; /* 텍스트만 2px 우측으로, 선은 전체 폭 유지 */
    border-bottom: 0.8px solid var(--border);
    align-items: baseline;
}

/* 마지막 행(소개) 하단선 제거 */
body.home .hs-hero__prog-row:last-child,
.site-main--home .hs-hero__prog-row:last-child {
    border-bottom: 0;
}

body.home .hs-hero__prog-row dt,
body.home .hs-hero__prog-row dd,
.site-main--home .hs-hero__prog-row dt,
.site-main--home .hs-hero__prog-row dd {
    font-family: var(--font-kr);
    font-size: 12px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: -0.02em; /* 문체고딕 자간 보정 */
    color: var(--black);
    margin: 0;
}


/* ─── 홈: FEATURED 카드 오버라이드 ─────────────────────────────────────────── */

body.home .featured-grid-section,
.site-main--home .featured-grid-section {
    padding: 40px 0 40px;
}

body.home .featured-grid-section .hs-sec-header,
.site-main--home .featured-grid-section .hs-sec-header {
    margin-bottom: 0;
}

body.home .featured-card__title,
.site-main--home .featured-card__title {
    font-size: 14px;
    margin-top: 8px;
}

/* 저스티파이드 그리드: 높이 통일, 폭은 각 이미지 비율 비례 (잘림 없음) */
body.home .featured-grid,
.site-main--home .featured-grid {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.home .featured-grid > li,
.site-main--home .featured-grid > li {
    /* 카드 폭 균등(위 ARTICLES 2열과 경계 정렬). 인라인 flex-grow:<비율>을 덮어씀.
       래퍼 aspect-ratio(인라인)는 유지 → 이미지 안 자르고 높이만 비율대로 달라짐 */
    flex: 1 1 0 !important;
    min-width: 0;
}

body.home .featured-card__image,
.site-main--home .featured-card__image {
    background: var(--bg);
    width: 100%;
}

/* PROGRAMS 탭 strip images와 동일: 호버 시 흑백 */
body.home .featured-card__image img,
.site-main--home .featured-card__image img,
body.home .featured-card__image video,
.site-main--home .featured-card__image video {
    transition: filter 0.25s ease;
}

body.home .featured-card:hover .featured-card__image img,
.site-main--home .featured-card:hover .featured-card__image img,
body.home .featured-card:hover .featured-card__image video,
.site-main--home .featured-card:hover .featured-card__image video {
    filter: grayscale(1);
    opacity: 1; /* 기존 opacity 호버 효과 대체 */
}

@media (max-width: 768px) {
    body.home .featured-grid,
    .site-main--home .featured-grid {
        flex-direction: column;
        gap: 18px; /* 하단 여백(18px)과 동일하게 */
    }
    /* 모바일: hero 이미지 스트립이 FEATURED 아래로 이동 → FEATURED 하단여백 제거해서
       스트립 위/아래 간격을 스트립 margin(40px)으로 동일하게 맞춤 */
    body.home .featured-grid-section,
    .site-main--home .featured-grid-section {
        padding-bottom: 0;
    }
}


/* OPEN TODAY 마퀴: 컴포지터 기반 CSS 애니메이션 (모바일에서도 멈추지 않음) */
@keyframes hsMqScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * var(--hs-mq-shift, 0px))); }
}
