/* static/css/style.css */
@font-face {
    font-family: 'Pretendard Variable';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url("../fonts/Pretendard-Regular.subset.97213db5c578.woff2") format('woff2');
}

@font-face {
    font-family: 'Pretendard Variable';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Pretendard SemiBold'), url("../fonts/Pretendard-SemiBold.subset.3ba9cd1e8bcb.woff2") format('woff2');
}

@font-face {
    font-family: 'Pretendard Variable';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url("../fonts/Pretendard-Bold.subset.40b92fb6e0e4.woff2") format('woff2');
}

@font-face {
    font-family: 'Pretendard Variable';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Pretendard ExtraBold'), url("../fonts/Pretendard-ExtraBold.subset.6dec4607c480.woff2") format('woff2');
}
/* 기본 폰트 사이즈를 키워 전체 비율을 확대 (기본값은 보통 16px) */
html {
    font-size: 17px; /* 필요에 따라 18px, 19px 등으로 숫자를 조절해 보세요 */
}

/* 바디 폰트의 기본 줄간격과 크기를 살짝 더 여유롭게 조정 */
body {
    font-size: 1.05rem; /* 기본 텍스트 크기를 5% 정도 추가로 키움 */
    line-height: 1.6;   /* 글자가 커진 만큼 줄간격도 늘려 가독성 확보 */
}

body {
    /* Pretendard를 1순위로 변경하여 모던한 느낌 강조 */
    font-family: 'Pretendard Variable', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    background-color: #ffffff; /* 배경을 순백색으로 변경하여 대비감 상승 */
    color: #1a1a1a;
    letter-spacing: -0.02em; /* 자간을 살짝 좁혀 한국어 가독성 향상 */
}

:root {
    --fcy-main-color: #f9bb0e;
    --fcy-dark-color: #1a1a1a;
    --border-color: #e5e5e5; /* 무신사 스타일의 연한 테두리 색상 */
    --fcy-number-font: 'Pretendard Variable', Pretendard, 'Noto Sans KR', sans-serif;
}

/* 상단 강조 바 */
.navbar {
    border-bottom: 2px solid var(--fcy-dark-color) !important;
}

/* 로고 사이즈 최적화 */
.site-logo {
    height: 42px;
    width: auto;
    display: block;
}

.league-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

/* 상단 종목 선택 바 플랫 디자인 적용 */
.series-container {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color); /* 하단선만 남김 */
    display: flex;
}

.series-item {
    flex: 1;
    padding: 16px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.1s;
}

.series-item:last-child { border-right: none; }
.series-item:hover { background-color: #fafafa; }
.series-item h6 { font-weight: 700; font-size: 1rem; }
.series-item small { font-weight: 600; font-size: 0.75rem; color: #555; }

.series-item.disabled {
    opacity: 0.3;
    pointer-events: none;
    background-color: #fff;
}

/* 드롭다운 플랫화 */
.custom-dropdown .btn.dropdown-toggle {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0; /* 각지게 변경 */
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.85rem;
}

.custom-dropdown .btn.dropdown-toggle:hover {
    border-color: #1a1a1a;
}

.custom-dropdown .dropdown-menu {
    border: 1px solid #1a1a1a;
    border-radius: 0;
    margin-top: -1px !important;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* 리스트 아이템 플랫화 */
.standing-item .rank {
    flex: 0 0 40px;
    width: 40px;
    min-width: 40px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Editorial and season reference pages */

::selection {
    background: var(--fcy-signal);
    color: var(--fcy-ink);
}

html {
    scrollbar-color: var(--fcy-muted) var(--fcy-canvas);
    scrollbar-width: thin;
}

.fcy-news-page .fcy-page-header,
.fcy-entity-page .fcy-page-header {
    margin-bottom: 1.5rem;
}

.fcy-news-feed {
    border-top: 0;
}

.fcy-news-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-news-row-featured {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1.2fr);
    padding: 2rem 0;
}

.fcy-news-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--fcy-surface-subtle);
}

.fcy-news-row-featured .fcy-news-media {
    aspect-ratio: 16 / 10;
}

.fcy-news-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fcy-news-media:hover img {
    transform: scale(1.025);
}

.fcy-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    margin-bottom: 0.65rem;
    color: var(--fcy-muted);
    font-size: 0.75rem;
    font-weight: 650;
}

.fcy-news-series {
    padding: 0.28rem 0.5rem;
    background: var(--fcy-ink);
    color: #fff;
    letter-spacing: 0.02em;
}

.fcy-news-copy h2 {
    max-width: 30ch;
    margin: 0 0 0.65rem;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

.fcy-news-row-featured .fcy-news-copy h2 {
    font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

.fcy-news-copy h2 a {
    color: var(--fcy-ink);
    text-decoration: none;
    text-underline-offset: 0.2em;
}

.fcy-news-copy h2 a:hover {
    text-decoration: underline;
    text-decoration-color: var(--fcy-signal-strong);
    text-decoration-thickness: 2px;
}

.fcy-news-copy p {
    max-width: 72ch;
    margin: 0 0 0.85rem;
    color: var(--fcy-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    word-break: keep-all;
}

.fcy-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.45rem;
    color: var(--fcy-ink);
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: var(--fcy-signal-strong);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.25em;
}

.fcy-countdown-unit {
    font-size: 0.75rem;
}

.fcy-data-note {
    margin: 0.9rem 0 0;
    color: var(--fcy-muted);
    font-size: 0.75rem;
    line-height: 1.6;
}

.fcy-inline-action {
    min-height: 44px;
    margin-top: 0.55rem;
    display: inline-flex;
    align-items: center;
    color: var(--fcy-ink);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--fcy-signal-strong);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.25em;
}

.fcy-data-advisory {
    margin: 0 0 1.25rem;
    padding: 1rem;
    border-top: 2px solid var(--fcy-ink);
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface-subtle);
    color: var(--fcy-ink);
}

.fcy-data-advisory strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 800;
}

.fcy-data-advisory p {
    margin: 0;
    color: var(--fcy-muted);
    font-size: 0.875rem;
    line-height: 1.55;
}

.fcy-empty-state {
    padding: clamp(3rem, 8vw, 6rem) 1.25rem;
    border-top: 2px solid var(--fcy-ink);
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
    text-align: center;
}

.fcy-empty-state h2 {
    margin: 0 0 0.5rem;
    color: var(--fcy-ink);
    font-size: 1.25rem;
    font-weight: 800;
}

.fcy-empty-state p {
    margin: 0;
    color: var(--fcy-muted);
}

.fcy-entity-tab-content {
    padding-bottom: 3rem;
}

.fcy-team-list {
    display: grid;
    gap: 2rem;
}

.fcy-team-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 0 2rem;
    border-top: 2px solid var(--fcy-ink);
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-team-identity {
    display: flex;
    min-width: 0;
    align-items: center;
    align-self: start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-team-logo {
    width: auto;
    height: auto;
    max-width: min(280px, 28vw);
    max-height: 72px;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.fcy-team-identity > div {
    min-width: 0;
    flex: 1 1 auto;
}

.fcy-team-identity h2 {
    margin: 0 0 0.35rem;
    color: var(--fcy-ink);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.fcy-country-line {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    color: var(--fcy-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.fcy-flag {
    width: 24px;
    height: 16px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcy-flag-fallback {
    width: 100%;
    display: block;
    overflow: hidden;
    color: var(--fcy-muted);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-overflow: clip;
    white-space: nowrap;
}

.fcy-car-grid {
    min-width: 0;
}

.fcy-car-entry {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-car-entry .team-car-visual {
    border-bottom-color: var(--fcy-line);
    background: var(--fcy-surface-subtle);
}

.fcy-car-entry-body {
    padding: 1rem;
}

.fcy-spec-list {
    margin: 0;
    border-top: 1px solid var(--fcy-ink);
}

.fcy-spec-list > div {
    display: grid;
    grid-template-columns: minmax(84px, 0.35fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-spec-list dt {
    color: var(--fcy-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.fcy-spec-list dd {
    margin: 0;
    color: var(--fcy-ink);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: right;
    word-break: keep-all;
}

.fcy-roster {
    margin-top: 1rem;
}

.fcy-roster h3 {
    margin: 0 0 0.6rem;
    color: var(--fcy-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.fcy-roster ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fcy-roster li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--fcy-ink);
    font-size: 0.82rem;
    font-weight: 650;
}

.fcy-muted {
    color: var(--fcy-muted) !important;
}

.fcy-driver-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-line);
}

.fcy-driver-entry {
    min-width: 0;
    background: var(--fcy-surface);
}

.fcy-driver-portrait {
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: var(--fcy-surface-subtle);
}

.fcy-driver-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.fcy-driver-name {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem;
    border-top: 1px solid var(--fcy-line);
}

.fcy-driver-name h3 {
    min-width: 0;
    margin: 0;
    color: var(--fcy-ink);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.4;
    word-break: keep-all;
}

.fcy-circuit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.fcy-circuit-entry {
    display: grid;
    grid-template-rows: 250px 1fr;
    border: 1px solid var(--fcy-line);
    border-top: 3px solid var(--fcy-ink);
    background: var(--fcy-surface);
}

.fcy-circuit-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface-subtle);
}

.fcy-circuit-visual img {
    width: 100%;
    max-width: 360px;
    height: 100%;
    object-fit: contain;
}

.fcy-circuit-round {
    position: absolute;
    right: 1rem;
    bottom: 0.7rem;
    color: var(--fcy-ink);
    font-family: var(--fcy-number-font);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    opacity: 0.12;
}

.fcy-circuit-copy {
    padding: 1.35rem;
}

.fcy-circuit-copy h2 {
    margin: 0 0 0.45rem;
    color: var(--fcy-ink);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    word-break: keep-all;
}

.fcy-circuit-copy .fcy-country-line {
    min-height: 44px;
    margin-bottom: 1rem;
}

.fcy-address {
    color: var(--fcy-muted);
    font-weight: 500;
}

@media (max-width: 899.98px) {
    .fcy-news-row,
    .fcy-news-row-featured {
        grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
        gap: 1.25rem;
    }

    .fcy-news-row-featured .fcy-news-copy h2 {
        font-size: 1.55rem;
    }

    .fcy-driver-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fcy-circuit-visual {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .fcy-news-feed {
        border-top-width: 0;
    }

    .fcy-news-row,
    .fcy-news-row-featured {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .fcy-news-row-featured {
        padding-top: 1rem;
    }

    .fcy-news-row-featured .fcy-news-copy h2,
    .fcy-news-copy h2 {
        font-size: 1.2rem;
    }

    .fcy-news-copy p {
        font-size: 0.82rem;
    }

    .fcy-team-section {
        gap: 1rem;
        padding: 1.1rem 0 1.5rem;
    }

    .fcy-team-logo {
        max-width: min(100%, 240px);
        max-height: 64px;
    }

    .fcy-team-identity {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .fcy-driver-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fcy-driver-portrait {
        height: 176px;
    }

    .fcy-driver-name {
        min-height: 68px;
        align-items: flex-start;
        padding: 0.7rem;
    }

    .fcy-driver-name .fcy-flag {
        width: 24px;
        height: 16px;
    }

    .fcy-circuit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fcy-circuit-entry {
        grid-template-rows: 210px 1fr;
    }

    .fcy-circuit-copy {
        padding: 1rem;
    }

    .fcy-circuit-copy .fcy-country-line {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fcy-news-media img {
        transition: none;
    }
}

.series-page-navigation {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
}

.series-page-navigation .series-item {
    flex: 1 0 112px;
    min-width: 112px;
    padding: 14px 8px;
    border-bottom: 2px solid transparent;
}

.series-page-navigation .series-item.active {
    background-color: #fafafa;
    border-bottom-color: var(--fcy-dark-color);
}

.fcy-series-overview {
    margin-top: 1.5rem;
    margin-bottom: 5rem;
}

.fcy-series-portal-header {
    min-height: 230px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
    border-top: 3px solid var(--fcy-signal);
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-series-portal-copy {
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.fcy-series-portal-copy h1 {
    max-width: 22ch;
    margin: 0;
    color: var(--fcy-ink);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 780;
    line-height: 1.22;
    word-break: keep-all;
}

.fcy-series-portal-copy p {
    max-width: 62ch;
    margin: 1rem 0 0;
    color: var(--fcy-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    word-break: keep-all;
}

.fcy-series-portal-logo {
    min-height: 190px;
    padding: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--fcy-line);
    background: var(--fcy-surface-subtle);
}

.fcy-series-portal-logo img {
    width: 100%;
    max-width: 240px;
    height: auto;
    max-height: 112px;
    object-fit: contain;
}

.fcy-series-overview-section {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.fcy-series-overview-heading {
    min-height: 68px;
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--fcy-ink);
}

.fcy-series-overview-heading h2 {
    margin: 0;
    color: var(--fcy-ink);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 760;
}

.fcy-series-overview-heading p {
    margin: 0;
    color: var(--fcy-muted);
    font-size: 0.78rem;
}

.fcy-series-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid var(--fcy-line);
}

.fcy-series-overview-link {
    position: relative;
    min-height: 124px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--fcy-line);
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
    color: var(--fcy-ink);
    text-decoration: none;
}

.fcy-series-overview-link:hover,
.season-archive-link:hover {
    background: var(--fcy-surface-subtle);
    color: var(--fcy-ink);
}

.fcy-series-overview-link.is-primary {
    background: var(--fcy-race-control);
    color: #fff;
}

.fcy-series-overview-link.is-primary::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--fcy-signal);
    content: "";
}

.fcy-series-overview-link.is-primary:hover {
    background: var(--fcy-race-control-raised);
    color: #fff;
}

.fcy-series-overview-link span {
    font-size: 1rem;
    font-weight: 780;
}

.fcy-series-overview-link small {
    margin-top: 0.3rem;
    color: var(--fcy-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.fcy-series-overview-link.is-primary small {
    color: #b9c3cc;
}

.fcy-season-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    padding-top: 1rem;
}

.season-archive-link {
    min-height: 78px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
    color: var(--fcy-ink);
    text-decoration: none;
}

.season-archive-link span {
    color: var(--fcy-muted);
    font-size: 0.75rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: 90px minmax(220px, 1.5fr) minmax(190px, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
}

.schedule-header {
    min-height: 46px;
    background-color: #fafafa;
    font-size: var(--fcy-font-micro);
}

.schedule-event {
    min-height: 94px;
    color: var(--fcy-dark-color);
    text-decoration: none;
}

.schedule-event:hover {
    background-color: #fafafa;
    color: var(--fcy-dark-color);
}

.schedule-event strong,
.schedule-event span,
.schedule-event small {
    display: block;
}

.schedule-event small {
    margin-top: 3px;
    color: #777;
    font-size: 0.75rem;
}

.schedule-round {
    font-size: 1.05rem;
    font-weight: 900;
}

.standings-header {
    background-color: #fafafa;
    font-size: var(--fcy-font-micro);
}

@media (max-width: 767.98px) {
    .series-page-navigation .series-item {
        flex-basis: 104px;
        min-width: 104px;
    }

    .schedule-header {
        display: none;
    }

    .schedule-row {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 8px 12px;
        padding: 15px 12px;
    }

    .schedule-event > :nth-child(3) {
        grid-column: 2;
    }
}

.standing-item .points {
    flex: 0 0 50px;
    width: 50px;
    min-width: 50px;
}

.standings-list .standing-item {
    align-items: baseline !important;
}

.standing-item > .flex-grow-1 {
    min-width: 0;
}

.standing-item .standing-name {
    min-width: 0;
    overflow: visible;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    text-overflow: clip;
}

.avatar-wrapper { width: 40px; height: 40px; }

/* 둥근 테두리 대신 각진 테두리 또는 미세한 곡률 적용 */
.driver-avatar, .team-logo-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 2px; /* 원형(50%)에서 사각형으로 변경 */
    background: #fff;
}

/* 버튼 각지게 변경 */
.btn-outline-dark, .btn-light {
    border-radius: 0 !important;
    border: 1px solid #1a1a1a;
}

/* 플랫 탭 버튼 스타일 (wec_home, wec_teams 공통) */
.flat-tab-btn {
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    transition: all 0.2s ease;
}

.flat-tab-btn:hover {
    background-color: #f8f9fa !important;
}

/* 선택되었을 때 (active) */
.flat-tab-btn.active {
    color: #ffffff !important;
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.dashboard-more-link {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid #d9d9d9;
    background-color: #ffffff;
    color: #333333;
    font-size: var(--fcy-font-secondary);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.dashboard-more-link i {
    color: #777777;
    font-size: 0.58rem;
    transition: transform 0.18s ease, color 0.18s ease;
}

.dashboard-more-link:hover {
    border-color: #777777;
    background-color: #f7f7f7;
    color: #1a1a1a;
}

.dashboard-more-link:hover i {
    color: #1a1a1a;
    transform: translateX(2px);
}

.dashboard-more-link:focus-visible {
    outline: 2px solid var(--fcy-focus);
    outline-offset: 2px;
}

/* Compact shared footer */
.footer {
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
}

.fcy-footer-inner {
    padding-top: clamp(1.35rem, 2.5vw, 2rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.85rem);
}

.fcy-footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.fcy-footer-disclosure,
.fcy-footer-meta {
    min-width: 0;
}

.fcy-footer-details {
    border-top: 1px solid var(--fcy-control-line-strong);
    border-bottom: 1px solid var(--fcy-control-line-soft);
}

.fcy-footer-details summary {
    min-height: 48px;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--fcy-on-dark);
    cursor: pointer;
    list-style: none;
}

.fcy-footer-details summary::-webkit-details-marker {
    display: none;
}

.fcy-footer-details summary:focus-visible,
.fcy-footer-instagram:focus-visible,
.footer-links a:focus-visible,
.disclaimer-text a:focus-visible {
    outline: 3px solid var(--fcy-focus);
    outline-offset: 2px;
}

.fcy-footer-details[open] summary {
    border-bottom: 1px solid var(--fcy-control-line-soft);
}

.fcy-footer-details-label {
    font-size: var(--fcy-font-secondary);
    font-weight: 700;
    letter-spacing: 0.09em;
}

.fcy-footer-details-action {
    color: var(--fcy-nav-text);
    font-size: var(--fcy-font-secondary);
    font-weight: 650;
}

.fcy-footer-action-close,
.fcy-footer-details[open] .fcy-footer-action-open {
    display: none;
}

.fcy-footer-details[open] .fcy-footer-action-close {
    display: inline;
}

.disclaimer-text {
    padding: 1rem 0 1.1rem;
    color: var(--fcy-nav-text);
    font-size: var(--fcy-font-caption);
    font-weight: 400;
    line-height: 1.72;
}

.disclaimer-text p {
    max-width: 88ch;
    margin: 0 0 0.65rem;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.disclaimer-text a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--fcy-signal);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.disclaimer-text a:hover {
    color: var(--fcy-signal-hover);
}

.fcy-footer-meta {
    padding-left: clamp(1.5rem, 3vw, 2.25rem);
    border-left: 1px solid var(--fcy-control-line-soft);
}

.fcy-footer-copyright-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

.fcy-footer-copyright {
    margin: 0;
    color: var(--fcy-on-dark);
    font-size: var(--fcy-font-caption);
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
}

.fcy-footer-copyright span {
    color: var(--fcy-nav-text);
    font-weight: 400;
}

.fcy-footer-instagram {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fcy-nav-text);
    text-decoration: none;
}

.fcy-footer-instagram:hover {
    color: var(--fcy-on-dark);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.1rem 0.8rem;
}

.footer-links a {
    min-width: 44px;
    min-height: 44px;
    padding: 0.25rem 0.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fcy-nav-text);
    font-size: var(--fcy-font-caption);
    font-weight: 500;
    text-decoration: none;
    text-underline-offset: 0.24em;
}

.footer-links a:hover {
    color: var(--fcy-on-dark);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .fcy-footer-layout {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .fcy-footer-meta {
        padding: 0.85rem 0 0;
        border-top: 1px solid var(--fcy-control-line-soft);
        border-left: 0;
    }

    .fcy-footer-copyright-row {
        justify-content: flex-start;
    }

    .fcy-footer-copyright {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .fcy-footer-inner {
        padding-top: 1.15rem;
        padding-bottom: 1.15rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .footer-links a {
        width: 100%;
        min-width: 0;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        justify-content: flex-start;
        font-size: var(--fcy-font-caption);
    }
}

@media print {
    .fcy-site .footer {
        border-top-color: #000;
        background: #fff !important;
        color: #000;
    }

    .fcy-footer-details summary {
        display: none;
    }

    .fcy-footer-details:not([open]) > .disclaimer-text {
        display: block !important;
    }

    .disclaimer-text,
    .disclaimer-text a,
    .fcy-footer-copyright,
    .fcy-footer-copyright span,
    .fcy-footer-instagram,
    .footer-links a {
        color: #000 !important;
    }
}

.terms-content h6 {
    letter-spacing: -0.02em;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.car-spec-container {
    background-color: #fdfdfd; /* 아주 옅은 배경색으로 공간을 분리 */
    border: 1px solid var(--border-color); /* 테두리를 얇게 쳐서 카드 안의 카드 느낌 */
    padding: 0.875rem 1rem;
    border-radius: 2px; /* 플랫 디자인 유지 */
}

.car-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 항목 사이의 구분선 (무신사에서 자주 쓰는 얇은 점선 스타일) */
.car-spec-row:not(:last-child) {
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed #e0e0e0;
}

.car-spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888; /* 라벨은 회색으로 톤다운 */
    letter-spacing: -0.02em;
    flex-shrink: 0;
    margin-right: 1rem;
    padding-top: 2px; /* 텍스트 수직 정렬 미세 보정 */
}

.car-spec-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fcy-dark-color); /* 값은 진한 검정으로 강조 */
    text-align: right;
    word-break: keep-all; /* 한국어 단어 단위로 줄바꿈 되도록 설정 */
    line-height: 1.35;
}

.info-media {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 420px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.info-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-logo-strip {
    border-top: 2px solid #1a1a1a;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.info-logo-cell {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e5e5;
    padding: 1.25rem;
}

.info-logo-cell:last-child {
    border-right: 0;
}

.info-logo-cell img {
    max-width: 100%;
    max-height: 82px;
    object-fit: contain;
}

.news-carousel {
    overflow: hidden;
}

.news-carousel-caption {
    display: block;
}

@media (max-width: 767.98px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 0.98rem;
    }

    .brand-bar {
        padding: 14px 0 !important;
    }

    .brand-bar .container {
        max-width: 100%;
        gap: 0.75rem;
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .site-logo {
        height: 32px;
        max-width: 52vw;
        object-fit: contain;
    }

    .header-nav {
        gap: 0.875rem !important;
        flex-shrink: 0;
    }

    .header-nav a {
        font-size: 0.78rem !important;
        white-space: nowrap;
    }

    .series-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .series-item {
        flex: 0 0 42vw;
        min-width: 128px !important;
        max-width: 170px;
        padding: 12px 8px;
    }

    .league-logo {
        height: 30px;
        max-width: 92px;
    }

    .series-item small {
        font-size: var(--fcy-font-micro);
        line-height: 1.35;
        word-break: keep-all;
    }

    main.container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    main.container > .container,
    main.container .container.px-0 {
        max-width: 100%;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    main.container .container.px-0 .series-container {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    main.container .d-flex.align-items-center.mb-4.pb-2.border-bottom {
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: flex-start !important;
    }

    main.container h2.fs-4 {
        flex: 1 1 100%;
        min-width: 0;
        font-size: 1.35rem !important;
        line-height: 1.3;
        word-break: keep-all;
    }

    main.container .custom-dropdown {
        max-width: 100%;
    }

    main.container .custom-dropdown .btn.dropdown-toggle {
        max-width: calc(100vw - 2rem);
        white-space: normal;
        line-height: 1.25;
        text-align: left;
    }

    .news-carousel-inner {
        height: 360px !important;
    }

    .news-carousel-caption {
        left: 0;
        right: 0;
        padding: 4.5rem 1rem 1rem !important;
        text-align: left !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 42%, transparent 100%) !important;
    }

    .news-carousel-title {
        font-size: 1rem !important;
        line-height: 1.35;
        margin-bottom: 0.35rem !important;
    }

    .news-carousel-summary {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 0.78rem;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    .site-logo {
        height: 28px;
        max-width: 50vw;
    }

    .header-nav {
        gap: 0.65rem !important;
    }

    .header-nav a {
        font-size: 0.72rem !important;
    }

    .series-item {
        flex-basis: 46vw;
        min-width: 120px !important;
    }

    .news-carousel-inner {
        height: 330px !important;
    }
}
.team-car-visual {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 176px;
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

.team-car-image-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 0.25rem;
}

.team-car-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

.team-car-number {
    min-width: 0;
    padding: 0.25rem 1rem 0.75rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .team-car-visual {
        min-height: 148px;
    }

    .team-car-image-wrap {
        padding: 0.75rem 0.75rem 0.25rem;
    }

    .team-car-image {
        height: 96px;
    }

    .team-car-number {
        padding: 0.25rem 0.75rem 0.625rem;
        font-size: 1.25rem;
    }
}

/* FCY interface system: shared shell and race-first home */
:root {
    --fcy-bg: #f4f5f6;
    --fcy-surface: #ffffff;
    --fcy-surface-subtle: #f8f9fa;
    --fcy-ink: #18212b;
    --fcy-muted: #65717d;
    --fcy-line: #dfe3e7;
    --fcy-race-control: #111b27;
    --fcy-race-control-raised: #1a2735;
    --fcy-signal: #f6c91f;
    --fcy-signal-hover: #ffe05a;
    --fcy-focus: #f0b90b;
    --fcy-danger: #b5222b;
    --fcy-on-dark: #ffffff;
    --fcy-on-signal: #111820;
    --fcy-on-signal-muted: #38414a;
    --fcy-nav-text: #d9e0e6;
    --fcy-series-text: #bac3cc;
    --fcy-unavailable-text: #8895a0;
    --fcy-unavailable-border: #52606c;
    --fcy-unavailable-label: #929ca5;
    --fcy-season-label: #8e9aa5;
    --fcy-hero-meta-text: #aeb9c3;
    --fcy-hero-empty-text: #b9c2cb;
    --fcy-hero-subtitle-text: #9faab5;
    --fcy-race-meta-label: #82909c;
    --fcy-race-meta-value: #f4f7f8;
    --fcy-countdown-label: #87939e;
    --fcy-track-label: #8f9ca7;
    --fcy-track-value: #c2cad1;
    --fcy-race-visual-start: #1c2b3a;
    --fcy-race-visual-end: #121d28;
    --fcy-line-subtle: #edf0f2;
    --fcy-media-placeholder: #e8ebed;
    --fcy-control-line-faint: rgba(255, 255, 255, 0.08);
    --fcy-control-line-low: rgba(255, 255, 255, 0.1);
    --fcy-control-line-soft: rgba(255, 255, 255, 0.13);
    --fcy-control-line-medium: rgba(255, 255, 255, 0.16);
    --fcy-control-line-strong: rgba(255, 255, 255, 0.2);
    --fcy-control-line-control: rgba(255, 255, 255, 0.22);
    --fcy-control-line-emphasis: rgba(255, 255, 255, 0.24);
    --fcy-control-glint: rgba(255, 255, 255, 0.025);
    --fcy-control-overlay: rgba(0, 0, 0, 0.12);
    --fcy-header-shadow: rgba(17, 27, 39, 0.16);
    --fcy-dock-surface: rgba(255, 255, 255, 0.97);
    --fcy-dock-shadow: rgba(17, 27, 39, 0.08);
    --fcy-standing-text: #212529;
    --fcy-standing-muted: rgba(33, 37, 41, 0.75);
    --fcy-standing-points: #dc3545;
    --fcy-standing-heading-size: 0.875rem;
    --fcy-standing-header-size: var(--fcy-font-micro);
    --fcy-standing-name-size: 0.85rem;
    --fcy-standing-rank-size: 1rem;
    --fcy-standing-points-size: 0.9rem;
    --fcy-font-micro: 0.75rem;
    --fcy-font-caption: 0.8125rem;
    --fcy-font-secondary: 0.875rem;
    --fcy-font-navigation: 0.9rem;
    --fcy-container: 1320px;
    --fcy-gutter: clamp(1rem, 2vw, 1.75rem);
    --fcy-radius: 6px;
}

html {
    font-size: 16px;
    scroll-padding-top: 9rem;
}

body.fcy-site {
    min-width: 320px;
    margin: 0;
    background: var(--fcy-bg);
    color: var(--fcy-ink);
    font-size: 1rem;
    line-height: 1.55;
    letter-spacing: 0;
}

.fcy-site .container {
    width: min(100%, var(--fcy-container));
    max-width: var(--fcy-container);
    padding-right: var(--fcy-gutter);
    padding-left: var(--fcy-gutter);
}

.fcy-main {
    min-height: 50vh;
}

.fcy-main > .container,
.fcy-main > .container.px-0 {
    padding-right: var(--fcy-gutter) !important;
    padding-left: var(--fcy-gutter) !important;
}

.fcy-skip-link {
    position: fixed;
    z-index: 1100;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.75rem 1rem;
    transform: translateY(-150%);
    background: var(--fcy-signal);
    color: var(--fcy-on-signal);
    font-weight: 800;
    text-decoration: none;
}

.fcy-skip-link:focus {
    transform: translateY(0);
}

.fcy-site a:focus-visible,
.fcy-site button:focus-visible,
.fcy-site select:focus-visible,
.fcy-main:focus-visible {
    outline: 3px solid var(--fcy-focus);
    outline-offset: 2px;
}

.fcy-main:focus-visible {
    outline-offset: -3px;
}

.fcy-site-header {
    z-index: 1030;
    color: var(--fcy-on-dark);
    border-top: 3px solid var(--fcy-signal);
    box-shadow: 0 1px 0 var(--fcy-header-shadow);
}

.fcy-info-guide-nav {
    border-color: var(--fcy-line) !important;
}

.fcy-info-guide-nav .flat-tab-btn {
    min-height: 44px;
    border-color: var(--fcy-line) !important;
    background: var(--fcy-surface) !important;
    color: var(--fcy-ink) !important;
}

.fcy-info-guide-nav .flat-tab-btn:hover {
    background: var(--fcy-surface-subtle) !important;
}

.fcy-info-guide-nav .flat-tab-btn.active {
    border-color: var(--fcy-ink) !important;
    background: var(--fcy-ink) !important;
    color: var(--fcy-on-dark) !important;
}

#section-core,
#section-strategy,
#section-flags,
#section-circuit,
#section-penalty {
    scroll-margin-top: 9rem;
}

.fcy-site .info-media {
    border-color: var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-site .info-logo-strip {
    border-top-color: var(--fcy-ink);
    border-bottom-color: var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-site .info-logo-cell {
    border-right-color: var(--fcy-line);
}

.fcy-header-primary {
    background: var(--fcy-race-control);
}

.fcy-header-primary-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
}

.fcy-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.site-logo {
    height: 34px;
    max-width: 180px;
}

.fcy-primary-navigation {
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 1.75rem);
}

.fcy-primary-navigation a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--fcy-nav-text);
    font-size: 0.875rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.fcy-primary-navigation a:hover {
    color: var(--fcy-on-dark);
}

.fcy-primary-navigation a.active {
    color: var(--fcy-on-dark);
    box-shadow: inset 0 -3px 0 var(--fcy-signal);
}

.fcy-menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--fcy-control-line-control);
    border-radius: 2px;
    background: transparent;
}

.fcy-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--fcy-surface);
}

.fcy-context-bar {
    background: var(--fcy-race-control-raised);
    border-top: 1px solid var(--fcy-control-line-faint);
}

.fcy-context-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fcy-series-switcher-shell {
    position: relative;
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
}

.fcy-series-switcher {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    overflow-x: auto;
    scrollbar-width: thin;
}

.fcy-series-link {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    min-width: 70px;
    min-height: 44px;
    padding: 0.5rem 0.9rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--fcy-series-text);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.fcy-series-link:hover {
    color: var(--fcy-on-dark);
}

.fcy-series-link.active {
    color: var(--fcy-on-dark);
}

.fcy-series-link.active::after {
    position: absolute;
    right: 0.9rem;
    bottom: 0;
    left: 0.9rem;
    height: 3px;
    background: var(--fcy-signal);
    content: "";
}

.fcy-series-link.is-unavailable {
    color: var(--fcy-unavailable-text);
    cursor: not-allowed;
}

.fcy-series-link small {
    padding: 0.08rem 0.25rem;
    border: 1px solid var(--fcy-unavailable-border);
    color: var(--fcy-unavailable-label);
    font-size: var(--fcy-font-micro);
    font-weight: 650;
    white-space: nowrap;
}

.fcy-season-context {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 34px;
    padding-left: 1rem;
    align-items: center;
    gap: 0.55rem;
    border-left: 1px solid var(--fcy-control-line-medium);
    color: var(--fcy-on-dark);
    font-variant-numeric: tabular-nums;
}

.fcy-season-context small {
    color: var(--fcy-season-label);
    font-size: var(--fcy-font-micro);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.fcy-season-context strong {
    font-size: 0.82rem;
}

.fcy-race-hero {
    position: relative;
    overflow: hidden;
    background: var(--fcy-race-control);
    color: var(--fcy-on-dark);
}

.fcy-race-hero::after {
    position: absolute;
    right: -10%;
    bottom: -11rem;
    width: 52%;
    height: 18rem;
    transform: skewX(-25deg);
    background: var(--fcy-control-glint);
    content: "";
}

.fcy-race-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 470px;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: stretch;
}

.fcy-race-hero.is-long-event .fcy-race-hero-grid {
    min-height: 500px;
    grid-template-columns: minmax(0, 7.4fr) minmax(320px, 4.6fr);
}

.fcy-race-intro,
.fcy-race-empty {
    max-width: 760px;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.fcy-race-empty {
    min-height: 390px;
}

.fcy-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    color: var(--fcy-hero-meta-text);
    font-size: var(--fcy-font-micro);
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fcy-hero-meta span {
    padding: 0.25rem 0.45rem;
    background: var(--fcy-signal);
    color: var(--fcy-on-signal);
    letter-spacing: 0.02em;
}

.fcy-race-intro h2,
.fcy-race-empty h2 {
    max-width: 14ch;
    margin: 0;
    color: var(--fcy-on-dark);
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
    word-break: keep-all;
}

.fcy-race-intro h2[data-title-density="long"] {
    max-width: none;
    font-size: clamp(2.65rem, 4.2vw, 3.65rem);
    line-height: 1.12;
}

.fcy-race-title-line {
    display: block;
}

.fcy-race-title-brand {
    letter-spacing: -0.035em;
}

.fcy-race-empty h2 {
    max-width: 18ch;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.fcy-race-empty > p:not(.fcy-hero-meta) {
    margin: 1rem 0 2rem;
    color: var(--fcy-hero-empty-text);
}

.fcy-race-subtitle {
    max-width: 62ch;
    margin: 0.8rem 0 0;
    color: var(--fcy-hero-subtitle-text);
    font-size: 0.92rem;
    font-weight: 550;
    line-height: 1.55;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.fcy-race-meta {
    display: grid;
    grid-template-columns: 1.05fr minmax(0, 1.75fr) 0.9fr 0.8fr;
    margin: 2rem 0 1.5rem;
    border-top: 1px solid var(--fcy-control-line-strong);
    border-bottom: 1px solid var(--fcy-control-line-strong);
}

.fcy-race-meta div {
    min-width: 0;
    padding: 0.75rem 1rem 0.8rem 0;
}

.fcy-race-meta div + div {
    padding-left: 1rem;
    border-left: 1px solid var(--fcy-control-line-soft);
}

.fcy-race-meta dt {
    margin-bottom: 0.2rem;
    color: var(--fcy-race-meta-label);
    font-size: var(--fcy-font-micro);
    font-weight: 700;
}

.fcy-race-meta dd {
    margin: 0;
    color: var(--fcy-race-meta-value);
    font-size: 0.84rem;
    font-weight: 650;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.fcy-countdown {
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 1.5rem;
    border: 1px solid var(--fcy-control-line-emphasis);
}

.fcy-countdown div {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--fcy-control-line-medium);
}

.fcy-countdown div:last-child {
    border-right: 0;
}

.fcy-countdown strong {
    font-family: var(--fcy-number-font);
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.fcy-countdown span {
    margin-top: 0.2rem;
    color: var(--fcy-countdown-label);
    font-size: var(--fcy-font-micro);
    font-weight: 650;
}

.fcy-countdown .is-signal {
    background: var(--fcy-signal);
    color: var(--fcy-on-signal);
}

.fcy-countdown .is-signal span {
    color: var(--fcy-on-signal-muted);
}

.fcy-button {
    min-height: 46px;
    padding: 0.7rem 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 0.86rem;
    font-weight: 760;
    text-decoration: none;
}

.fcy-button-signal {
    background: var(--fcy-signal);
    color: var(--fcy-on-signal);
}

.fcy-button-signal:hover {
    background: var(--fcy-signal-hover);
    color: var(--fcy-on-signal);
}

.fcy-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fcy-series-root-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--fcy-nav-text);
    font-size: 0.8rem;
    font-weight: 700;
    text-underline-offset: 0.25rem;
}

.fcy-series-root-link:hover {
    color: var(--fcy-on-dark);
}

.fcy-race-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-left: 1px solid var(--fcy-control-line-faint);
    background: linear-gradient(145deg, var(--fcy-race-visual-start), var(--fcy-race-visual-end) 72%);
}

.fcy-race-visual::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--fcy-control-glint) 1px, transparent 1px), linear-gradient(90deg, var(--fcy-control-glint) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
}

.fcy-race-visual img {
    position: relative;
    z-index: 1;
    width: min(78%, 430px);
    max-height: 290px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.72;
}

.fcy-track-label,
.fcy-visual-series {
    position: absolute;
    z-index: 2;
    font-size: var(--fcy-font-micro);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fcy-track-label {
    top: 1.5rem;
    left: 1.5rem;
    color: var(--fcy-track-label);
}

.fcy-visual-series {
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 0.25rem 0.45rem;
    border: 1px solid var(--fcy-control-line-strong);
    color: var(--fcy-track-value);
}

.fcy-quick-paths {
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-quick-paths .container {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding-right: var(--fcy-gutter);
    padding-left: var(--fcy-gutter);
}

.fcy-quick-paths a {
    min-width: 0;
    min-height: 86px;
    padding: 1.1rem 0.9rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--fcy-line);
    color: var(--fcy-ink);
    text-decoration: none;
}

.fcy-quick-paths a:first-child {
    border-left: 1px solid var(--fcy-line);
}

.fcy-quick-paths a:hover {
    background: var(--fcy-surface-subtle);
}

.fcy-quick-paths strong {
    font-size: var(--fcy-font-navigation);
}

.fcy-quick-paths span {
    margin-top: 0.2rem;
    overflow: hidden;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-caption);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fcy-home-content {
    padding-top: clamp(3rem, 6vw, 5.5rem);
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

.fcy-home-section + .fcy-home-section {
    margin-top: clamp(4rem, 8vw, 7rem);
}

.fcy-section-heading {
    min-height: 65px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--fcy-ink);
}

.fcy-section-heading h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 740;
    line-height: 1.3;
    word-break: keep-all;
}

.fcy-section-heading > a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--fcy-ink);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.fcy-standings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--fcy-line);
    border-left: 1px solid var(--fcy-line);
}

.fcy-standings-panel {
    min-width: 0;
    border-right: 1px solid var(--fcy-line);
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-standings-panel > header {
    min-height: 58px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0;
}

.fcy-standings-panel h3 {
    margin: 0;
    font-size: var(--fcy-standing-heading-size);
    font-weight: 700;
}

.fcy-standings-panel header a {
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-caption);
    font-weight: 650;
}

.fcy-ranking-head,
.fcy-ranking-list li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 92px;
    align-items: center;
}

.fcy-ranking-head {
    min-height: 36px;
    padding: 0 1rem;
    background: var(--fcy-surface-subtle);
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
    font-weight: 650;
}

.fcy-ranking-head span:last-child {
    text-align: right;
}

.fcy-ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fcy-ranking-list li {
    min-height: 54px;
    padding: 0.65rem 1rem;
    border-top: 1px solid var(--fcy-line-subtle);
}

.fcy-ranking-list li:first-child {
    border-top: 0;
}

.fcy-ranking-list li:nth-child(-n+3) .fcy-rank {
    color: var(--fcy-ink);
    font-weight: 850;
}

.fcy-ranking-list strong {
    min-width: 0;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.35;
    word-break: keep-all;
}

.fcy-rank,
.fcy-points,
.fcy-standing-rank,
.fcy-standing-points {
    font-family: var(--fcy-number-font);
    font-variant-numeric: tabular-nums;
}

.fcy-rank {
    color: var(--fcy-muted);
    font-size: 0.9rem;
}

.fcy-points {
    color: var(--fcy-danger);
    font-size: 0.88rem;
    font-weight: 750;
    text-align: right;
}

.fcy-points small {
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
}

.fcy-standing-table-heading {
    margin: 0 0 1rem;
    padding: 0 0 0.5rem;
    border: 0;
    color: var(--fcy-ink);
    font-family: 'Pretendard Variable', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: var(--fcy-standing-heading-size);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.fcy-standings-panel > header .fcy-standing-table-heading {
    margin: 0;
    padding: 0;
}

.fcy-standings-panel .fcy-standing-table,
.fcy-hub-grid .fcy-standing-table {
    border-right: 0;
    border-left: 0;
}

.fcy-standing-table .fcy-standing-rank,
.fcy-standing-table .fcy-standing-points {
    font-family: var(--fcy-number-font);
    font-variant-numeric: tabular-nums;
}

.fcy-standing-table .fcy-standing-rank {
    color: var(--fcy-standing-text);
    font-size: var(--fcy-standing-rank-size);
    font-weight: 900;
}

.fcy-standing-table .fcy-standing-points {
    color: var(--fcy-standing-points);
    font-size: var(--fcy-standing-points-size);
    font-weight: 700;
}

.fcy-standing-table .fcy-data-empty {
    display: table-cell !important;
    min-height: 0;
    padding: 1.25rem;
}

.fcy-data-empty {
    min-height: 84px;
    padding: 1.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--fcy-muted);
    font-size: 0.78rem;
    text-align: center;
}

.fcy-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    border-top: 1px solid var(--fcy-line);
    border-left: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-lead-story,
.fcy-news-list {
    min-width: 0;
    border-right: 1px solid var(--fcy-line);
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-lead-story > a {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.05fr);
    color: var(--fcy-ink);
    text-decoration: none;
}

.fcy-lead-image {
    min-height: 320px;
    overflow: hidden;
    background: var(--fcy-media-placeholder);
}

.fcy-lead-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 220ms ease;
}

.fcy-lead-story a:hover .fcy-lead-image img {
    transform: scale(1.015);
}

.fcy-story-copy {
    padding: clamp(1.5rem, 3vw, 2.75rem);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.fcy-story-copy > p:first-child,
.fcy-news-list article p {
    margin: 0 0 0.75rem;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
    font-weight: 650;
}

.fcy-story-copy > p:first-child span,
.fcy-news-list article p span {
    margin-right: 0.45rem;
    padding: 0.12rem 0.35rem;
    background: var(--fcy-ink);
    color: var(--fcy-on-dark);
}

.fcy-story-copy h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 730;
    line-height: 1.35;
    word-break: keep-all;
}

.fcy-story-summary {
    margin: 1rem 0 0 !important;
    color: var(--fcy-muted) !important;
    font-size: var(--fcy-font-navigation) !important;
    font-weight: 400 !important;
    line-height: 1.65;
}

.fcy-story-action {
    min-height: 44px;
    margin-top: auto;
    padding-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fcy-font-secondary);
    font-weight: 700;
}

.fcy-news-list {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.fcy-news-list article {
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-news-list article:last-child {
    border-bottom: 0;
}

.fcy-news-list a {
    position: relative;
    min-height: 92px;
    height: 100%;
    padding: 1.15rem 3rem 1.15rem 1.2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--fcy-ink);
    text-decoration: none;
}

.fcy-news-list a:hover {
    background: var(--fcy-surface-subtle);
}

.fcy-news-list h3 {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.fcy-news-list a > span {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    color: var(--fcy-muted);
}

.fcy-news-empty {
    min-height: 180px;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-section-navigation-wrap {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-section-navigation-shell {
    position: relative;
}

.fcy-section-navigation-cue {
    display: none;
}

.fcy-series-switcher-cue {
    display: none;
}

.fcy-section-navigation-wrap .series-page-navigation {
    background: transparent;
}

.fcy-section-navigation-wrap .series-item {
    min-height: 52px;
    padding: 0.65rem 0.85rem;
    flex-direction: row;
    border-right: 0;
    border-bottom: 3px solid transparent;
    color: var(--fcy-muted);
}

.fcy-section-navigation-wrap .series-item small {
    color: inherit;
    font-size: 0.76rem;
    font-weight: 650;
    white-space: nowrap;
}

.fcy-section-navigation-wrap .series-item.active {
    background: transparent;
    border-bottom-color: var(--fcy-signal);
    color: var(--fcy-ink);
}

.fcy-site .footer {
    margin-top: 0;
    border-top: 3px solid var(--fcy-signal);
    background: var(--fcy-race-control);
    color: var(--fcy-on-dark);
}

.fcy-mobile-dock {
    display: none;
}

@media (max-width: 991.98px) {
    .fcy-header-primary-inner {
        position: relative;
        min-height: 58px;
        flex-wrap: wrap;
    }

    .fcy-primary-navigation {
        flex: 1 0 100%;
        margin: 0 calc(var(--fcy-gutter) * -1);
        padding: 0.5rem var(--fcy-gutter) 1rem;
        border-top: 1px solid var(--fcy-control-line-low);
    }

    .fcy-primary-navigation.show {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fcy-primary-navigation a {
        padding: 0 0.5rem;
        border-bottom: 1px solid var(--fcy-control-line-faint);
    }

    .fcy-series-switcher {
        scrollbar-width: none;
    }

    .fcy-series-switcher::-webkit-scrollbar {
        display: none;
    }

    .fcy-race-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .fcy-race-hero.is-long-event .fcy-race-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .fcy-race-visual {
        display: none;
    }

    .fcy-race-intro {
        padding: 3.5rem 0 3rem;
    }

    .fcy-race-intro h2[data-title-density="long"] {
        max-width: none;
        font-size: clamp(2.5rem, 5.3vw, 3.4rem);
    }

    .fcy-quick-paths .container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: hidden;
    }

    .fcy-standings-grid,
    .fcy-news-grid {
        grid-template-columns: 1fr;
    }

    .fcy-news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .fcy-news-list article:nth-child(odd) {
        border-right: 1px solid var(--fcy-line);
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 7.5rem;
    }

    body.fcy-has-mobile-dock {
        padding-bottom: 64px;
    }

    .site-logo {
        height: 28px;
    }

    .fcy-context-inner {
        padding-right: 0;
    }

    .fcy-series-switcher-shell {
        margin-left: calc(var(--fcy-gutter) * -1);
    }

    .fcy-series-switcher {
        padding-left: var(--fcy-gutter);
        padding-right: 4.5rem;
    }

    .fcy-series-switcher-cue {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        width: 4.5rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.28rem;
        padding-right: 0.65rem;
        background: linear-gradient(90deg, transparent, var(--fcy-race-control-raised) 42%);
        color: var(--fcy-on-dark);
        font-size: var(--fcy-font-micro);
        font-weight: 750;
        pointer-events: none;
    }

    .fcy-series-switcher-cue i {
        font-size: 0.68rem;
    }

    .fcy-series-link {
        min-width: auto;
        padding: 0.45rem 0.75rem;
    }

    .fcy-series-overview {
        margin-top: 0;
        margin-bottom: 4rem;
    }

    .fcy-series-portal-header {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .fcy-series-portal-copy {
        padding: 1.75rem var(--fcy-gutter) 1.5rem;
    }

    .fcy-series-portal-copy p {
        font-size: 0.82rem;
    }

    .fcy-series-portal-logo {
        min-height: 128px;
        padding: 1.25rem var(--fcy-gutter);
        border-top: 1px solid var(--fcy-line);
        border-left: 0;
    }

    .fcy-series-portal-logo img {
        max-width: 180px;
        max-height: 84px;
    }

    .fcy-series-overview-section {
        margin-top: 3rem;
        padding-right: var(--fcy-gutter);
        padding-left: var(--fcy-gutter);
    }

    .fcy-series-overview-heading {
        min-height: 0;
        display: block;
    }

    .fcy-series-overview-heading p {
        margin-top: 0.4rem;
        font-size: 0.75rem;
    }

    .fcy-series-overview-grid,
    .fcy-season-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fcy-series-overview-link {
        min-height: 112px;
        padding: 1rem;
    }

    .fcy-series-overview-link small {
        font-size: var(--fcy-font-micro);
    }

    .fcy-season-context {
        min-height: 48px;
        padding: 0 0.8rem;
        border-left-color: var(--fcy-control-line-soft);
        background: var(--fcy-control-overlay);
    }

    .fcy-season-context small {
        display: none;
    }

    .fcy-race-intro,
    .fcy-race-empty {
        min-height: auto;
        padding: 2rem 0 1.8rem;
    }

    .fcy-race-intro h2,
    .fcy-race-empty h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .fcy-race-intro h2[data-title-density="long"] {
        max-width: none;
        font-size: clamp(2rem, 9vw, 2.375rem);
        line-height: 1.15;
    }

    .fcy-race-subtitle {
        font-size: 0.78rem;
    }

    .fcy-race-meta {
        grid-template-columns: minmax(0, 1.45fr) minmax(96px, 0.55fr);
        grid-template-areas:
            "date season"
            "venue series";
        margin: 1.5rem 0 1rem;
    }

    .fcy-race-meta div + div {
        padding-left: 0;
        border-left: 0;
    }

    .fcy-race-meta-date {
        grid-area: date;
    }

    .fcy-race-meta-venue {
        grid-area: venue;
    }

    .fcy-race-meta-series {
        grid-area: series;
    }

    .fcy-race-meta-season {
        grid-area: season;
    }

    .fcy-race-meta-series,
    .fcy-race-meta-season {
        padding-left: 0.8rem;
        border-left: 1px solid var(--fcy-control-line-soft);
    }

    .fcy-race-meta-venue,
    .fcy-race-meta-series {
        border-top: 1px solid var(--fcy-control-line-soft);
    }

    .fcy-countdown {
        width: 100%;
        margin-bottom: 1rem;
    }

    .fcy-button {
        width: 100%;
    }

    .fcy-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0.35rem;
    }

    .fcy-series-root-link {
        justify-content: center;
    }

    .fcy-quick-paths .container {
        padding: 0;
    }

    .fcy-quick-path-primary-task {
        display: none !important;
    }

    .fcy-quick-paths a {
        min-height: 74px;
        padding: 0.8rem 0.65rem;
        text-align: center;
    }

    .fcy-quick-paths a:first-child {
        border-left: 0;
    }

    .fcy-quick-paths a:nth-child(4) {
        border-left: 1px solid var(--fcy-line);
    }

    .fcy-quick-paths a:last-child {
        border-right: 0;
    }

    .fcy-quick-paths span {
        display: none;
    }

    .fcy-home-content {
        padding-top: 2.75rem;
        padding-bottom: 3.5rem;
    }

    .fcy-home-section + .fcy-home-section {
        margin-top: 4rem;
    }

    .fcy-section-heading {
        align-items: flex-end;
    }

    .fcy-section-heading > a {
        font-size: var(--fcy-font-secondary);
    }

    .fcy-ranking-head,
    .fcy-ranking-list li {
        grid-template-columns: 42px minmax(0, 1fr) 72px;
    }

    .fcy-lead-story > a {
        grid-template-columns: 1fr;
    }

    .fcy-lead-image {
        min-height: 210px;
        max-height: 260px;
    }

    .fcy-story-copy {
        padding: 1.3rem;
    }

    .fcy-story-copy h3 {
        font-size: 1.2rem;
    }

    .fcy-story-action {
        margin-top: 0.75rem;
    }

    .fcy-news-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .fcy-news-list article:nth-child(odd) {
        border-right: 0;
    }

    .fcy-section-navigation-wrap {
        margin-bottom: 1rem;
    }

    .fcy-section-navigation-wrap .container {
        padding: 0;
    }

    .fcy-section-navigation-wrap .series-page-navigation {
        padding: 0 var(--fcy-gutter);
        padding-right: 4.5rem;
        scrollbar-width: none;
    }

    .fcy-section-navigation-cue {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        width: 4.5rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.28rem;
        padding-right: 0.65rem;
        background: linear-gradient(90deg, transparent, var(--fcy-surface) 42%);
        color: var(--fcy-ink);
        font-size: var(--fcy-font-micro);
        font-weight: 750;
        pointer-events: none;
    }

    .fcy-section-navigation-cue i {
        font-size: 0.68rem;
    }

    .fcy-section-navigation-wrap .series-page-navigation::-webkit-scrollbar {
        display: none;
    }

    .fcy-section-navigation-wrap .series-item {
        flex: 0 0 auto;
        min-width: 76px !important;
        min-height: 48px;
        padding: 0.55rem 0.75rem;
    }

    .fcy-main > .container,
    .fcy-main > .container.px-0,
    .fcy-main .container.px-0 {
        max-width: 100%;
        padding-right: var(--fcy-gutter) !important;
        padding-left: var(--fcy-gutter) !important;
    }

    .fcy-mobile-dock {
        position: fixed;
        z-index: 1025;
        right: 0;
        bottom: 0;
        left: 0;
        height: 64px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid var(--fcy-line);
        background: var(--fcy-dock-surface);
        box-shadow: 0 -8px 24px var(--fcy-dock-shadow);
        backdrop-filter: blur(10px);
    }

    .fcy-mobile-dock a {
        position: relative;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.15rem;
        color: var(--fcy-muted);
        font-size: var(--fcy-font-secondary);
        font-weight: 650;
        text-decoration: none;
    }

    .fcy-mobile-dock a[aria-current="page"] {
        color: var(--fcy-ink);
    }

    .fcy-mobile-dock a[aria-current="page"]::before {
        position: absolute;
        top: 0;
        right: 27%;
        left: 27%;
        height: 3px;
        background: var(--fcy-signal);
        content: "";
    }

    .fcy-mobile-dock i {
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .fcy-race-meta div {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .fcy-countdown div {
        min-height: 58px;
    }

    .fcy-countdown strong {
        font-size: 1.15rem;
    }

    .fcy-section-heading h2 {
        font-size: 1.18rem;
    }

    .fcy-section-heading > a span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .fcy-news-media img {
        transform: none !important;
    }
}

/* Structured race data pages */
.fcy-data-page {
    padding-top: 1.25rem;
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

.fcy-page-header {
    min-height: 132px;
    margin-bottom: 2rem;
    padding: 1.1rem 0 1.4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 2px solid var(--fcy-ink);
}

.fcy-page-header h1 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 760;
    line-height: 1.25;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.fcy-page-header p {
    margin: 0.65rem 0 0;
    color: var(--fcy-muted);
    font-size: 0.84rem;
}

/* Shared static and policy pages */
.fcy-static-page .fcy-page-header {
    margin-bottom: 1.75rem;
}

.fcy-static-column {
    min-width: 0;
}

.fcy-static-content {
    width: min(100%, 920px);
    color: var(--fcy-ink);
    font-size: 0.95rem;
    line-height: 1.75;
}

.fcy-static-content .text-muted,
.fcy-static-content .text-secondary,
.fcy-info-page .text-muted,
.fcy-info-page .text-secondary {
    color: var(--fcy-muted) !important;
}

.fcy-static-content section {
    margin-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.fcy-static-content section > h5 {
    margin: 0 0 1.25rem !important;
    padding: 0 0 0.8rem !important;
    border-color: var(--fcy-ink) !important;
    border-width: 0 0 2px !important;
    color: var(--fcy-ink);
    font-size: 1.08rem;
    font-weight: 760 !important;
    line-height: 1.35;
    word-break: keep-all;
}

.fcy-static-content h6 {
    margin-bottom: 0.65rem;
    color: var(--fcy-ink) !important;
    font-size: 0.95rem;
    font-weight: 700 !important;
    line-height: 1.5;
}

.fcy-static-content p,
.fcy-static-content li {
    line-height: 1.75;
    word-break: keep-all;
}

.fcy-static-content strong {
    color: var(--fcy-ink);
}

.fcy-static-content > .bg-light,
.fcy-static-content section .bg-light {
    border-color: var(--fcy-line) !important;
    background: var(--fcy-surface-subtle) !important;
}

.fcy-static-content a:not(.btn) {
    color: var(--fcy-ink) !important;
    text-decoration-color: var(--fcy-signal);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.fcy-static-content a:not(.btn):hover {
    text-decoration-color: var(--fcy-ink);
}

.fcy-static-content .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 2px !important;
    font-size: 0.82rem;
    font-weight: 700 !important;
}

.fcy-static-content .btn-dark {
    border-color: var(--fcy-signal);
    background: var(--fcy-signal);
    color: var(--fcy-on-signal);
}

.fcy-static-content .btn-dark:hover {
    border-color: var(--fcy-signal-hover);
    background: var(--fcy-signal-hover);
    color: var(--fcy-on-signal);
}

.fcy-static-content .btn-outline-dark {
    border-color: var(--fcy-ink);
    background: var(--fcy-surface);
    color: var(--fcy-ink);
}

.fcy-static-content .btn-outline-dark:hover {
    border-color: var(--fcy-ink);
    background: var(--fcy-ink);
    color: var(--fcy-on-dark);
}

.fcy-roadmap-list {
    width: 100%;
    border-top: 2px solid var(--fcy-ink);
}

.fcy-roadmap-list .fcy-roadmap-row {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid var(--fcy-line);
    margin-bottom: 0 !important;
}

.fcy-roadmap-meta h4 {
    margin: 0 0 0.6rem !important;
    color: var(--fcy-ink) !important;
    font-size: 1.08rem;
    font-weight: 760 !important;
    line-height: 1.3;
}

.fcy-roadmap-status {
    padding: 0.3rem 0.45rem;
    border: 1px solid var(--fcy-line);
    border-radius: 2px;
    background: var(--fcy-surface-subtle);
    color: var(--fcy-ink);
    font-size: var(--fcy-font-caption);
    font-weight: 700;
    line-height: 1.4;
}

.fcy-roadmap-status.is-complete {
    border-color: var(--fcy-ink);
    background: var(--fcy-ink);
    color: var(--fcy-on-dark);
}

.fcy-roadmap-copy > div:last-child {
    margin-bottom: 0 !important;
}

.fcy-info-page .fcy-info-guide-nav {
    margin-bottom: 3rem !important;
    padding-bottom: 0.75rem !important;
    overflow-x: auto;
    scrollbar-width: none;
}

.fcy-info-page .fcy-info-guide-nav::-webkit-scrollbar {
    display: none;
}

.fcy-info-page .fcy-info-guide-nav .nav {
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.fcy-info-page .fcy-info-guide-nav .nav-item {
    margin: 0 !important;
}

.fcy-info-page .fcy-info-guide-nav .nav-link {
    padding: 0.6rem 0.85rem !important;
    white-space: nowrap;
}

.fcy-info-page > [id^="section-"] {
    margin-bottom: clamp(3rem, 6vw, 5rem) !important;
    border-color: var(--fcy-line) !important;
}

.fcy-info-page > [id^="section-"] > h4 {
    margin-bottom: 1.25rem !important;
    color: var(--fcy-ink) !important;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 740 !important;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.fcy-info-page > [id^="section-"] h5 {
    color: var(--fcy-ink) !important;
    font-size: 1.08rem;
    line-height: 1.4;
}

.fcy-info-page > [id^="section-"] .text-secondary.small {
    font-size: 0.95rem;
    line-height: 1.75 !important;
}

.fcy-info-page > [id^="section-"] .border,
.fcy-info-page > [id^="section-"] .border-bottom {
    border-color: var(--fcy-line) !important;
}

.fcy-season-picker {
    flex: 0 0 auto;
}

.fcy-season-picker .btn {
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--fcy-ink);
    border-radius: 2px;
    background: var(--fcy-surface);
    color: var(--fcy-ink);
    font-size: 0.78rem;
    font-weight: 700;
}

.fcy-season-picker .dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    min-width: 10rem;
    margin: 0;
    padding: 0.35rem 0;
    border: 1px solid var(--fcy-line);
    border-radius: 2px;
    background: var(--fcy-surface);
    box-shadow: 0 12px 28px rgba(15, 31, 45, 0.12);
    max-height: min(420px, 70vh);
    overflow-y: auto;
}

.fcy-season-picker .dropdown-menu.show {
    display: block;
}

.fcy-season-picker .dropdown-item {
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
}

.fcy-season-picker .dropdown-item.active {
    background: var(--fcy-ink);
    color: #fff;
}

.fcy-schedule-panel {
    border-top: 1px solid var(--fcy-line);
    border-left: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-schedule-head,
.fcy-schedule-list a {
    display: grid;
    grid-template-columns: 82px 130px minmax(220px, 1.15fr) minmax(220px, 0.85fr) 28px;
    gap: 1rem;
    align-items: center;
}

.fcy-schedule-head {
    min-height: 42px;
    padding: 0.65rem 1.2rem;
    border-right: 1px solid var(--fcy-line);
    border-bottom: 2px solid var(--fcy-ink);
    background: var(--fcy-surface-subtle);
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
    font-weight: 650;
}

.fcy-schedule-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fcy-schedule-list li {
    border-right: 1px solid var(--fcy-line);
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-schedule-list a {
    min-height: 82px;
    padding: 1rem 1.2rem;
    color: var(--fcy-ink);
    text-decoration: none;
}

.fcy-schedule-list a:hover {
    background: var(--fcy-surface-subtle);
}

.fcy-schedule-round,
.fcy-schedule-list time,
.fcy-schedule-date small {
    font-family: var(--fcy-number-font);
    font-variant-numeric: tabular-nums;
}

.fcy-schedule-round {
    font-size: 1rem;
    font-weight: 800;
}

.fcy-schedule-date {
    min-width: 0;
}

.fcy-schedule-date time {
    display: block;
    color: var(--fcy-muted);
    font-size: 0.86rem;
    font-weight: 650;
    white-space: nowrap;
}

.fcy-schedule-date small {
    display: block;
    margin-top: 0.15rem;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
}

.fcy-schedule-status {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    margin-top: 0.35rem;
    padding: 0.2rem 0.45rem;
    border: 1px solid var(--fcy-line);
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.fcy-schedule-date-next {
    padding: 0.35rem 0.45rem;
    background: rgba(246, 201, 31, 0.18);
    background: color-mix(in srgb, var(--fcy-signal) 18%, transparent);
}

.fcy-schedule-date-next .fcy-schedule-status {
    border-color: var(--fcy-signal-strong);
    background: var(--fcy-signal);
    color: var(--fcy-ink);
}

.fcy-schedule-date-complete .fcy-schedule-status {
    background: var(--fcy-surface-subtle);
}

.fcy-schedule-date-upcoming .fcy-schedule-status {
    background: var(--fcy-surface);
}

.fcy-schedule-event,
.fcy-schedule-venue {
    min-width: 0;
}

.fcy-schedule-event strong,
.fcy-schedule-venue strong,
.fcy-schedule-event small,
.fcy-schedule-venue small {
    display: block;
}

.fcy-schedule-event strong,
.fcy-schedule-venue strong {
    font-size: var(--fcy-font-secondary);
    font-weight: 680;
    line-height: 1.4;
    word-break: keep-all;
}

.fcy-schedule-event small,
.fcy-schedule-venue small {
    margin-top: 0.2rem;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
    line-height: 1.4;
}

.fcy-row-action {
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    color: var(--fcy-muted);
    text-align: right;
}

.fcy-race-selector-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--fcy-muted);
    font-family: var(--fcy-number-font);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.fcy-class-tabs {
    margin: 0 0 1.5rem;
    border-bottom: 1px solid var(--fcy-line);
    gap: 0.25rem;
}

.fcy-class-tabs .nav-link {
    min-width: 112px;
    min-height: 46px;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 2px 2px 0 0;
    color: var(--fcy-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.fcy-class-tabs .nav-link:hover {
    border-color: var(--fcy-line);
    color: var(--fcy-ink);
}

.fcy-class-tabs .nav-link.active {
    border-color: var(--fcy-ink);
    background: var(--fcy-ink);
    color: #fff;
}

.fcy-standings-content > .tab-pane:focus-visible {
    outline: 3px solid var(--fcy-focus);
    outline-offset: 4px;
}

.fcy-full-standings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.fcy-standing-table-wrap {
    min-width: 0;
}

.fcy-standing-table-wrap h2 {
    min-height: 0;
}

.fcy-standing-table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    border-top: 2px solid var(--fcy-standing-text);
    background: var(--fcy-surface);
    color: var(--fcy-standing-text);
    font-family: 'Pretendard Variable', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.fcy-standing-table th,
.fcy-standing-table td {
    border-bottom: 1px solid #f1f1f1;
}

.fcy-standing-table thead th {
    height: 34px;
    padding: 0.5rem 0;
    border-bottom-color: var(--fcy-line);
    background: #fafafa;
    color: var(--fcy-standing-muted);
    font-size: var(--fcy-standing-header-size);
    font-weight: 700;
    line-height: 1.55;
    text-align: left;
}

.fcy-standing-table thead th:first-child,
.fcy-standing-table tbody td:first-child {
    width: 40px;
    text-align: center;
}

.fcy-standing-table thead th:last-child,
.fcy-standing-table tbody td:last-child {
    width: 50px;
    padding-right: 0.5rem;
    text-align: right;
}

.fcy-standing-table tbody th,
.fcy-standing-table tbody td {
    height: 58px;
    padding: 1rem 0;
    font-size: var(--fcy-standing-name-size);
}

.fcy-standing-table tbody th {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.fcy-standing-table tbody td:first-child,
.fcy-standing-table tbody td:last-child {
    font-family: var(--fcy-number-font);
    font-variant-numeric: tabular-nums;
}

.fcy-standing-table tbody td:first-child {
    color: var(--fcy-standing-text);
    font-size: var(--fcy-standing-rank-size);
    font-weight: 900;
    line-height: 1.55;
}

.fcy-standing-table tbody td:last-child {
    color: var(--fcy-standing-points);
    font-size: var(--fcy-standing-points-size);
    font-weight: 700;
    line-height: 1.55;
}

.fcy-panel-empty {
    min-height: 220px;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-panel-empty h2,
.fcy-panel-empty h5,
.fcy-panel-empty h6 {
    margin: 0 0 0.5rem;
    color: var(--fcy-ink);
    font-size: 1rem;
}

.fcy-panel-empty p {
    margin: 0;
}

.fcy-race-selector {
    margin-bottom: 1.5rem;
}

.fcy-race-selector > .btn {
    min-height: 112px;
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--fcy-line);
    border-bottom: 2px solid var(--fcy-ink);
    border-radius: 2px;
    background: var(--fcy-surface);
    color: var(--fcy-ink);
}

.fcy-race-selector h2 {
    margin: 0.25rem 0 0.35rem;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 740;
}

.fcy-race-selector-meta {
    color: var(--fcy-muted);
    font-size: var(--fcy-font-caption);
    font-weight: 550;
}

.fcy-race-selector > .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--fcy-ink);
}

.fcy-race-selector .race-select-item {
    min-height: 66px;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid var(--fcy-line);
    white-space: normal;
}

.fcy-race-selector .race-select-item strong,
.fcy-race-selector .race-select-item small {
    display: block;
}

.fcy-race-selector .race-select-item strong {
    color: var(--fcy-ink);
    font-size: var(--fcy-font-secondary);
}

.fcy-race-selector .race-select-item small {
    margin-top: 0.2rem;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
}

.fcy-race-selector .race-select-item.active {
    background: var(--fcy-ink);
}

.fcy-race-selector .race-select-item.active strong,
.fcy-race-selector .race-select-item.active small {
    color: #fff;
}

.fcy-race-video {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--fcy-line);
    border-radius: var(--fcy-radius);
    background: #0e1720;
}

.fcy-race-video-disclosure {
    margin-top: 1.25rem;
    border-top: 1px solid var(--fcy-line);
    border-bottom: 1px solid var(--fcy-line);
}

.fcy-race-video-disclosure summary {
    min-height: 48px;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--fcy-ink);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 750;
    list-style: none;
}

.fcy-race-video-summary-copy {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
}

.fcy-race-video-hint {
    min-height: 26px;
    padding: 0.2rem 0.45rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--fcy-signal);
    border-radius: 2px;
    background: var(--fcy-signal);
    color: var(--fcy-on-signal);
    font-size: var(--fcy-font-micro);
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.fcy-race-video-hint-open {
    display: none;
}

.fcy-race-video-disclosure[open] .fcy-race-video-hint {
    border-color: var(--fcy-line);
    background: var(--fcy-surface-subtle);
    color: var(--fcy-muted);
}

.fcy-race-video-disclosure[open] .fcy-race-video-hint-closed {
    display: none;
}

.fcy-race-video-disclosure[open] .fcy-race-video-hint-open {
    display: inline;
}

.fcy-race-video-disclosure summary:focus-visible {
    outline: 3px solid var(--fcy-focus);
    outline-offset: 3px;
}

.fcy-race-video-disclosure summary::-webkit-details-marker {
    display: none;
}

.fcy-race-video-disclosure summary::after {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
}

.fcy-race-video-disclosure[open] summary::after {
    transform: rotate(225deg) translate(-2px, -1px);
}

.fcy-race-video-disclosure .fcy-race-video {
    margin-bottom: 1rem;
}

.fcy-results-wrap {
    overflow-x: auto;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
}

.fcy-results-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.fcy-results-table thead {
    border-bottom: 2px solid var(--fcy-ink);
    background: var(--fcy-surface-subtle);
}

.fcy-results-table th {
    padding: 0.8rem 1rem;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
    font-weight: 650;
    text-align: left;
}

.fcy-results-table th:first-child,
.fcy-results-table th:nth-child(3),
.fcy-results-table th:nth-child(5) {
    text-align: center;
}

.fcy-results-table th:last-child {
    text-align: right;
}

.fcy-results-table td {
    min-height: 66px;
    padding: 1rem;
    border-bottom: 1px solid #edf0f2;
    font-size: var(--fcy-font-caption);
    vertical-align: middle;
}

.fcy-result-position {
    width: 72px;
    font-family: var(--fcy-number-font);
    font-size: 1.05rem !important;
    font-weight: 800;
    text-align: center;
}

.fcy-result-team {
    min-width: 170px;
}

.fcy-result-team strong,
.fcy-result-team small {
    display: block;
}

.fcy-result-team strong {
    font-size: 0.82rem;
    font-weight: 680;
}

.fcy-result-team small {
    margin-top: 0.15rem;
    color: var(--fcy-muted);
    font-size: var(--fcy-font-micro);
}

.fcy-result-car {
    width: 70px;
    text-align: center;
}

.fcy-result-car span {
    min-width: 38px;
    min-height: 32px;
    padding: 0.35rem 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fcy-ink);
    border-radius: 999px;
    font-family: var(--fcy-number-font);
    font-weight: 750;
}

.fcy-result-drivers {
    min-width: 210px;
    font-weight: 550;
    line-height: 1.55;
}

.fcy-result-laps {
    width: 80px;
    color: var(--fcy-muted);
    text-align: center;
}

.fcy-result-time {
    min-width: 190px;
    font-weight: 650;
    text-align: right;
    word-break: keep-all;
}

.fcy-race-hub .fcy-page-header {
    margin-bottom: 1.5rem;
}

.fcy-hub-grid {
    border-color: var(--fcy-line) !important;
    background: var(--fcy-surface);
}

.fcy-hub-grid .fcy-hub-next-date {
    letter-spacing: -0.3px;
}

.fcy-hub-grid .fcy-hub-next-date-value {
    font-size: 0.75rem;
}

.fcy-hub-grid .fcy-hub-section,
.fcy-hub-grid .fcy-hub-standings-header {
    border-color: var(--fcy-line) !important;
}

.fcy-hub-grid .fcy-hub-schedule-list {
    border-color: var(--fcy-ink) !important;
    border-top-width: 2px !important;
}

.fcy-hub-grid .fcy-hub-schedule-item {
    border-color: var(--fcy-line-subtle) !important;
}

.fcy-hub-grid .fcy-hub-schedule-date {
    min-width: 48px;
    font-size: var(--fcy-font-secondary);
    letter-spacing: -0.5px;
}

.fcy-hub-grid .fcy-hub-schedule-event {
    font-size: var(--fcy-font-navigation);
    letter-spacing: -0.3px;
}

.fcy-hub-grid .fcy-hub-schedule-venue {
    font-size: var(--fcy-font-caption);
}

.fcy-hub-grid .fcy-hub-schedule-arrow {
    font-size: 0.7rem;
}

.fcy-hub-grid > .col-lg-4,
.fcy-hub-grid > .col-lg-8,
.fcy-hub-grid .border-bottom,
.fcy-hub-grid .border-end {
    border-color: var(--fcy-line) !important;
}

.fcy-hub-grid > .col-lg-4 > .bg-light {
    background: var(--fcy-race-control) !important;
    color: #fff;
}

.fcy-hub-grid > .col-lg-4 > .bg-light .text-dark,
.fcy-hub-grid > .col-lg-4 > .bg-light h3 {
    color: #fff !important;
}

.fcy-hub-grid > .col-lg-4 > .bg-light .text-muted,
.fcy-hub-grid > .col-lg-4 > .bg-light p {
    color: #aeb8c1 !important;
}

.fcy-hub-grid #countdown-wrapper {
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.24) !important;
    border-radius: 2px;
}

.fcy-hub-grid #countdown-wrapper > div {
    min-height: 64px;
    padding: 0.55rem !important;
    border-color: var(--fcy-line) !important;
    color: var(--fcy-ink);
    font-family: var(--fcy-number-font);
    font-variant-numeric: tabular-nums;
}

.fcy-hub-grid #countdown-wrapper > div:last-child {
    background: var(--fcy-signal) !important;
    color: var(--fcy-ink) !important;
}

.fcy-hub-grid .list-group-item {
    min-height: 66px;
}

.fcy-hub-grid .list-group-item:hover {
    background: var(--fcy-surface-subtle) !important;
}

.fcy-race-hub .flat-tab-btn {
    min-height: 44px;
    border: 1px solid var(--fcy-line);
    background: var(--fcy-surface);
    color: var(--fcy-ink);
}

.fcy-race-hub .flat-tab-btn.active {
    border-color: var(--fcy-ink);
    background: var(--fcy-ink);
    color: #fff;
}

.fcy-race-hub .standing-name {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-break: keep-all;
}

@media (max-width: 899.98px) {
    .fcy-page-header {
        min-height: auto;
        align-items: flex-end;
    }

    .fcy-schedule-head {
        display: none;
    }

    .fcy-schedule-list a {
        grid-template-columns: 58px minmax(0, 1fr) 24px;
        gap: 0.75rem;
    }

    .fcy-schedule-date {
        grid-column: 1;
        grid-row: 2;
    }

    .fcy-schedule-date time {
        color: var(--fcy-ink);
        font-size: 0.95rem;
        font-weight: 800;
    }

    .fcy-schedule-date small {
        margin-top: 0.1rem;
        font-size: var(--fcy-font-micro);
    }

    .fcy-schedule-status {
        min-height: 22px;
        margin-top: 0.25rem;
        padding: 0.18rem 0.35rem;
        font-size: var(--fcy-font-micro);
    }

    .fcy-schedule-event {
        grid-column: 2;
        grid-row: 1;
    }

    .fcy-schedule-venue {
        grid-column: 2;
        grid-row: 2;
    }

    .fcy-schedule-venue strong {
        color: var(--fcy-muted);
        font-size: var(--fcy-font-secondary);
        font-weight: 500;
    }

    .fcy-schedule-venue small,
    .fcy-schedule-event small {
        display: none;
    }

    .fcy-row-action {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .fcy-full-standings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .fcy-data-page {
        padding-top: 0.6rem;
        padding-bottom: 4rem;
    }

    .fcy-page-header {
        position: relative;
        margin-bottom: 1.25rem;
        padding: 0.8rem 0 4.1rem;
        display: block;
        gap: 0.75rem;
    }

    .fcy-page-header h1 {
        font-size: 1.35rem;
    }

    .fcy-page-header p {
        max-width: 34ch;
        margin-top: 0.45rem;
        font-size: 0.72rem;
    }

    .fcy-season-picker {
        position: absolute;
        right: 0;
        bottom: 0.8rem;
    }

    .fcy-season-picker .btn.dropdown-toggle {
        min-width: 72px;
        padding-right: 0.6rem;
        padding-left: 0.6rem;
        font-size: 0.76rem;
    }

    .fcy-season-word {
        display: none;
    }

    .fcy-schedule-list a {
        min-height: 76px;
        padding: 0.8rem;
    }

    .fcy-class-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .fcy-class-tabs::-webkit-scrollbar {
        display: none;
    }

    .fcy-class-tabs .nav-link {
        min-width: 100px;
    }

    .fcy-standing-table-wrap h2 {
        min-height: 0;
    }

    .fcy-race-selector > .btn {
        min-height: 96px;
        padding: 1rem;
    }

    .fcy-race-selector-meta span {
        display: block;
        margin: 0.15rem 0 0 !important;
    }

    .fcy-results-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .fcy-results-table {
        min-width: 0;
        display: block;
    }

    .fcy-results-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .fcy-results-table tbody {
        display: grid;
        gap: 0.75rem;
    }

    .fcy-results-table tr {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) 72px;
        border: 1px solid var(--fcy-line);
        border-top: 3px solid var(--fcy-ink);
        background: var(--fcy-surface);
    }

    .fcy-results-table td {
        width: auto;
        min-width: 0;
        min-height: 0;
        padding: 0.75rem;
        display: block;
        border: 0;
        text-align: left;
    }

    .fcy-results-table td::before {
        display: block;
        margin-bottom: 0.18rem;
        color: var(--fcy-muted);
        font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
        font-size: var(--fcy-font-micro);
        font-weight: 600;
        content: attr(data-label);
    }

    .fcy-results-table .fcy-result-position {
        grid-column: 1;
        grid-row: 1 / span 2;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-right: 1px solid var(--fcy-line);
        font-size: 1.2rem !important;
        text-align: center;
    }

    .fcy-result-team {
        grid-column: 2;
        grid-row: 1;
    }

    .fcy-result-car {
        grid-column: 3;
        grid-row: 1;
        text-align: right !important;
    }

    .fcy-result-car::before {
        text-align: right;
    }

    .fcy-result-drivers {
        grid-column: 2 / 4;
        grid-row: 2;
        padding-top: 0 !important;
        border-bottom: 1px solid var(--fcy-line) !important;
    }

    .fcy-result-laps {
        grid-column: 1 / 2;
        grid-row: 3;
        border-top: 1px solid var(--fcy-line) !important;
        border-right: 1px solid var(--fcy-line) !important;
        text-align: center !important;
    }

    .fcy-result-time {
        grid-column: 2 / 4;
        grid-row: 3;
        border-top: 1px solid var(--fcy-line) !important;
        text-align: right !important;
    }

    .fcy-result-time::before {
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .fcy-series-link small,
    .fcy-season-context small,
    .fcy-hero-meta,
    .fcy-race-meta dt,
    .fcy-countdown span,
    .fcy-ranking-head,
    .fcy-points small,
    .fcy-news-list article p,
    .fcy-section-navigation-cue,
    .fcy-schedule-date small,
    .fcy-race-selector-label,
    .fcy-race-selector-meta,
    .fcy-race-selector .race-select-item small,
    .fcy-result-team small,
    .fcy-results-table td::before {
        font-size: var(--fcy-font-micro);
    }

    .fcy-section-heading > a,
    .fcy-standings-panel header a,
    .fcy-page-header p,
    .fcy-schedule-status,
    .fcy-schedule-venue strong,
    .fcy-mobile-dock a {
        font-size: var(--fcy-font-secondary);
    }

    .fcy-schedule-list a {
        grid-template-columns: 72px minmax(0, 1fr) 24px;
    }

    .fcy-static-page .fcy-page-header {
        padding-bottom: 1.25rem;
    }

    .fcy-static-content {
        font-size: 0.925rem;
    }

    .fcy-roadmap-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fcy-info-page .fcy-info-guide-nav {
        margin-right: calc(var(--fcy-gutter) * -1);
        margin-left: calc(var(--fcy-gutter) * -1);
        padding-right: var(--fcy-gutter);
        padding-left: var(--fcy-gutter);
    }
}

@media (max-width: 575.98px) {
    .fcy-static-content > .bg-light,
    .fcy-static-content section .bg-light {
        padding: 1rem !important;
    }

    .fcy-static-content .btn {
        width: 100%;
        justify-content: center;
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
        overflow-wrap: anywhere;
        text-align: center;
    }

    #section-flags .d-flex.align-items-center {
        display: grid !important;
        grid-template-columns: 28px minmax(0, 1fr);
        column-gap: 0.75rem;
        align-items: start !important;
    }

    #section-flags .d-flex.align-items-center > .me-3 {
        margin-right: 0 !important;
    }

    #section-flags .d-flex.align-items-center > .fw-bold {
        width: auto !important;
    }

    #section-flags .d-flex.align-items-center > .text-secondary {
        grid-column: 2;
        margin-top: 0.4rem;
    }
}
