@charset "utf-8";
/* ==================================================================
   ONAIR — broadcast theme  (온에어 (OnAir) 방송국 테마 v1.0.0)
   색·간격은 아래 :root 토큰만 고치면 전체에 반영됩니다.
   ================================================================== */
:root {
  --oa-bg: #0b0d12;
  --oa-bg-2: #12151d;
  --oa-bg-3: #1a1e29;
  --oa-line: rgba(255,255,255,.09);
  --oa-line-2: rgba(255,255,255,.16);
  --oa-text: #f3f4f7;
  --oa-sub: #a4a9b6;
  --oa-mute: #6d7382;
  --oa-red: #ff3b30;
  --oa-red-2: #d92a20;
  --oa-yellow: #ffd60a;
  --oa-paper: #ffffff;
  --oa-paper-text: #171a21;
  --oa-radius: 14px;
  --oa-radius-sm: 8px;
  --oa-wrap: 1240px;
  --oa-gutter: 24px;
  --oa-head-h: 72px;
  --oa-font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --oa-display: "Black Han Sans", var(--oa-font);
  --oa-shadow: 0 18px 50px rgba(0,0,0,.45);
}

/* ---------- reset (코어 스킨과 충돌하지 않도록 최소한만) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.oa-body { margin: 0; background: var(--oa-bg); color: var(--oa-text); font-family: var(--oa-font); font-size: 16px; line-height: 1.6; word-break: keep-all; overflow-wrap: anywhere; -webkit-font-smoothing: antialiased; }
.oa-body img { max-width: 100%; height: auto; }
.oa-body a { color: inherit; }
.oa-body button { font-family: inherit; }
.sound_only, .msg_sound_only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; margin: -1px !important; padding: 0 !important; border: 0 !important; }
:focus-visible { outline: 3px solid var(--oa-yellow); outline-offset: 2px; }

.oa-wrap { width: 100%; max-width: var(--oa-wrap); margin: 0 auto; padding: 0 var(--oa-gutter); }
.oa-skip { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--oa-yellow); color: #000 !important; padding: 10px 16px; border-radius: 8px; font-weight: 700; text-decoration: none; }
.oa-skip:focus { top: 12px; }

/* ---------- LIVE 배지 ---------- */
.oa-live { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px 3px 8px; border-radius: 4px; background: var(--oa-red); color: #fff; font-family: var(--oa-display); font-size: 12px; letter-spacing: .08em; line-height: 1.3; }
.oa-live i { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: oa-blink 1.2s ease-in-out infinite; }
@keyframes oa-blink { 50% { opacity: .25; } }

/* ---------- ticker ---------- */
.oa-ticker { background: #000; border-bottom: 1px solid var(--oa-line); font-size: 13px; color: var(--oa-sub); }
.oa-ticker__in { display: flex; align-items: center; gap: 20px; min-height: 38px; }
.oa-ticker__live { flex: 1; min-width: 0; margin: 0; display: flex; align-items: center; gap: 10px; }
.oa-ticker__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--oa-text); }
.oa-ticker__clock { margin: 0; font-variant-numeric: tabular-nums; color: var(--oa-yellow); font-weight: 700; letter-spacing: .04em; }
.oa-ticker__util { display: flex; gap: 14px; }
.oa-ticker__util a { text-decoration: none; }
.oa-ticker__util a:hover { color: #fff; }

/* ---------- header ---------- */
.oa-header { position: sticky; top: 0; z-index: 100; background: rgba(11,13,18,.92); -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--oa-line); transition: box-shadow .2s; }
.oa-header.is-stuck { box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.oa-header__in { display: flex; align-items: center; gap: 28px; height: var(--oa-head-h); }
.oa-logo { display: inline-flex; align-items: center; gap: 10px; margin: 0; text-decoration: none; flex-shrink: 0; }
.oa-logo img { max-height: 40px; width: auto; }
.oa-logo__mark { position: relative; width: 30px; height: 30px; border-radius: 50%; background: var(--oa-red); box-shadow: 0 0 0 5px rgba(255,59,48,.18); }
.oa-logo__mark::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.oa-logo__name { font-family: var(--oa-display); font-size: 26px; letter-spacing: .02em; line-height: 1; color: #fff; }
.oa-logo__sub { font-size: 10px; font-weight: 800; letter-spacing: .28em; color: var(--oa-sub); padding-top: 4px; }

.oa-nav { flex: 1; min-width: 0; }
.oa-nav__list { display: flex; gap: 4px; margin: 0; padding: 0; list-style: none; }
.oa-nav__item { position: relative; }
.oa-nav__link { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 700; font-size: 16px; text-decoration: none; color: var(--oa-text); }
.oa-nav__link:hover, .oa-nav__item:focus-within > .oa-nav__link { background: var(--oa-bg-3); color: #fff; }
.oa-nav__item.has-sub > .oa-nav__link::after { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 0 3px 7px; border: solid currentColor; border-width: 0 2px 2px 0; transform: rotate(45deg); opacity: .5; }
.oa-nav__sub { position: absolute; left: 0; top: 100%; min-width: 190px; margin: 6px 0 0; padding: 8px; list-style: none; background: var(--oa-bg-2); border: 1px solid var(--oa-line-2); border-radius: 12px; box-shadow: var(--oa-shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s ease; }
.oa-nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }
.oa-nav__item:hover > .oa-nav__sub, .oa-nav__item:focus-within > .oa-nav__sub { opacity: 1; visibility: visible; transform: none; }
.oa-nav__sub a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 15px; text-decoration: none; color: var(--oa-sub); }
.oa-nav__sub a:hover { background: var(--oa-bg-3); color: #fff; }

.oa-header__act { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.oa-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--oa-line-2); border-radius: 50%; background: transparent; color: var(--oa-text); cursor: pointer; transition: background .15s, border-color .15s; }
.oa-icon:hover { background: var(--oa-bg-3); border-color: rgba(255,255,255,.3); }
.oa-icon--sm { width: 36px; height: 36px; }
.oa-icon--menu { display: none; }
.oa-cta { display: inline-flex; align-items: center; height: 42px; padding: 0 18px; border-radius: 999px; background: var(--oa-red); color: #fff !important; font-weight: 800; text-decoration: none; transition: background .15s; }
.oa-cta:hover { background: var(--oa-red-2); }

.oa-search { border-top: 1px solid var(--oa-line); background: var(--oa-bg-2); }
.oa-search[hidden] { display: none; }
.oa-search__in { display: flex; gap: 10px; padding-top: 16px; padding-bottom: 16px; }
.oa-search input[type=search] { flex: 1; min-width: 0; height: 52px; padding: 0 18px; border: 1px solid var(--oa-line-2); border-radius: 12px; background: var(--oa-bg); color: #fff; font: inherit; font-size: 17px; }
.oa-search input[type=search]::placeholder { color: var(--oa-mute); }
.oa-search button { height: 52px; padding: 0 26px; border: 0; border-radius: 12px; background: var(--oa-yellow); color: #000; font-weight: 800; font-size: 16px; cursor: pointer; }

/* ---------- drawer (모바일 메뉴) ---------- */
.oa-drawer { position: fixed; inset: 0; z-index: 300; }
.oa-drawer[hidden] { display: none; }
.oa-drawer__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.6); animation: oa-fade .2s ease; }
.oa-drawer__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(86vw, 360px); padding: 18px 20px 30px; overflow-y: auto; background: var(--oa-bg-2); border-left: 1px solid var(--oa-line-2); animation: oa-slide .24s ease; }
.oa-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--oa-line); }
.oa-drawer__group { padding: 12px 0; border-bottom: 1px solid var(--oa-line); }
.oa-drawer__group a { display: block; padding: 7px 4px; text-decoration: none; color: var(--oa-sub); }
.oa-drawer__group a.oa-drawer__top { color: #fff; font-weight: 800; font-size: 18px; }
.oa-drawer__foot { display: flex; gap: 10px; padding-top: 18px; }
.oa-drawer__foot a { flex: 1; text-align: center; padding: 12px; border: 1px solid var(--oa-line-2); border-radius: 10px; text-decoration: none; font-weight: 700; }
@keyframes oa-fade { from { opacity: 0; } }
@keyframes oa-slide { from { transform: translateX(100%); } }
html.oa-lock-scroll { overflow: hidden; }

/* ---------- 공통 요소 ---------- */
.oa-main--home { padding-bottom: 40px; }
.oa-section { padding: 40px 0 0; }
.oa-sec-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.oa-sec-head h2 { margin: 0; font-family: var(--oa-display); font-weight: 400; font-size: 24px; letter-spacing: .01em; }
.oa-sec-head h2 a { text-decoration: none; }
.oa-sec-head h2::before { content: ""; display: inline-block; width: 5px; height: 20px; margin-right: 10px; vertical-align: -2px; background: var(--oa-red); border-radius: 2px; }
.oa-more { font-size: 14px; color: var(--oa-sub); text-decoration: none; white-space: nowrap; }
.oa-more:hover { color: #fff; }
.oa-more::after { content: " →"; }
.oa-btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; border-radius: 999px; background: var(--oa-red); color: #fff !important; font-weight: 800; text-decoration: none; transition: transform .15s, background .15s; }
.oa-btn:hover { background: var(--oa-red-2); transform: translateY(-1px); }
.oa-btn--light { background: #fff; color: #000 !important; }
.oa-btn--light:hover { background: var(--oa-yellow); }
.oa-tag { display: inline-block; padding: 2px 7px; border-radius: 4px; border: 1px solid var(--oa-line-2); font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--oa-sub); white-space: nowrap; }
.oa-tag--live { border-color: var(--oa-red); background: var(--oa-red); color: #fff; }
.oa-empty { padding: 28px 0; color: var(--oa-mute); text-align: center; list-style: none; }
.oa-placeholder { padding: 26px; border: 1px dashed var(--oa-line-2); border-radius: var(--oa-radius); color: var(--oa-sub); font-size: 14px; background: var(--oa-bg-2); }
.oa-placeholder b { color: #fff; }
.oa-placeholder h2 { margin: 0 0 8px; font-family: var(--oa-display); font-weight: 400; font-size: 20px; color: #fff; }
.oa-placeholder p { margin: 0; line-height: 1.6; }
.oa-placeholder code { padding: 1px 6px; border-radius: 4px; background: var(--oa-bg-3); color: var(--oa-yellow); font-size: 13px; }
.oa-hero .oa-placeholder { height: 100%; min-height: 240px; display: flex; flex-direction: column; justify-content: center; }

/* ---------- hero ---------- */
.oa-hero { padding-top: 28px; background: radial-gradient(1100px 420px at 20% -10%, rgba(255,59,48,.22), transparent 70%), radial-gradient(700px 360px at 95% 10%, rgba(255,214,10,.08), transparent 70%); }
.oa-hero__in { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: stretch; }
.oa-hero__main { min-width: 0; }
.oa-feature { position: relative; height: 100%; min-height: 420px; border-radius: var(--oa-radius); overflow: hidden; background: var(--oa-bg-2); isolation: isolate; box-shadow: var(--oa-shadow); }
.oa-feature__media { position: absolute; inset: 0; z-index: -1; display: block; }
.oa-feature__media img, .oa-feature__ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.oa-feature__ph { background: linear-gradient(135deg, #2a0d0b, #111624 60%, #0b0d12); }
.oa-feature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,6,9,.94) 0%, rgba(5,6,9,.55) 45%, rgba(5,6,9,.05) 80%); }
.oa-feature__play { position: absolute; z-index: 1; right: 28px; top: 28px; display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: rgba(255,59,48,.92); color: #fff; box-shadow: 0 0 0 10px rgba(255,59,48,.22); transition: transform .2s; }
.oa-feature:hover .oa-feature__play { transform: scale(1.08); }
.oa-feature__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 36px; }
.oa-feature__kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; font-weight: 700; color: var(--oa-sub); font-size: 14px; }
.oa-feature__title { margin: 0 0 10px; font-family: var(--oa-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.18; letter-spacing: -.005em; text-wrap: balance; }
.oa-feature__title a { text-decoration: none; }
.oa-feature__meta { margin: 0 0 20px; color: var(--oa-sub); font-size: 14px; }

.oa-sched { display: flex; flex-direction: column; border-radius: var(--oa-radius); background: var(--oa-bg-2); border: 1px solid var(--oa-line); overflow: hidden; }
.oa-sched__head { padding: 18px 20px 14px; border-bottom: 1px solid var(--oa-line); display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.oa-sched__head h2 { margin: 0; font-family: var(--oa-display); font-weight: 400; font-size: 20px; }
.oa-sched__head p { margin: 0; font-size: 13px; color: var(--oa-sub); }
.oa-sched__list { flex: 1; margin: 0; padding: 6px 0; list-style: none; }
.oa-sched__list li { position: relative; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; padding: 11px 20px; font-size: 15px; color: var(--oa-sub); }
.oa-sched__list li + li { border-top: 1px solid var(--oa-line); }
.oa-sched__list time { font-variant-numeric: tabular-nums; font-weight: 800; color: var(--oa-mute); }
.oa-sched__title { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.oa-sched__list li.is-past { opacity: .5; }
.oa-sched__list li.is-now { background: linear-gradient(90deg, rgba(255,59,48,.18), transparent); color: #fff; font-weight: 700; }
.oa-sched__list li.is-now::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--oa-red); }
.oa-sched__list li.is-now time { color: var(--oa-yellow); }

/* ---------- 영상 레일 ---------- */
.oa-rail__ctrl { display: flex; align-items: center; gap: 8px; }
.oa-rail__ctrl .oa-more { margin-left: 6px; }
.oa-rail__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 18px) / 4); gap: 18px; margin: 0; padding: 0 0 6px; list-style: none; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.oa-rail__track::-webkit-scrollbar { display: none; }
.oa-vcard { scroll-snap-align: start; min-width: 0; }
.oa-vcard a { display: block; text-decoration: none; }
.oa-vcard__media { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: linear-gradient(135deg, #22110f, #151a26); }
.oa-vcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.oa-vcard a:hover .oa-vcard__media img { transform: scale(1.05); }
.oa-vcard__dur { position: absolute; right: 8px; bottom: 8px; padding: 1px 7px; border-radius: 4px; background: rgba(0,0,0,.8); font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.oa-vcard__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 10px; font-weight: 700; line-height: 1.4; }
.oa-vcard a:hover .oa-vcard__title { color: var(--oa-yellow); }
.oa-vcard__meta { display: block; margin-top: 4px; font-size: 13px; color: var(--oa-mute); }

/* ---------- 게시판 3단 ---------- */
.oa-boards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.oa-box { padding: 22px 22px 12px; border-radius: var(--oa-radius); background: var(--oa-bg-2); border: 1px solid var(--oa-line); min-width: 0; }
.oa-box .oa-sec-head h2 { font-size: 20px; }
.oa-list { margin: 0; padding: 0; list-style: none; }
.oa-list li + li { border-top: 1px solid var(--oa-line); }
.oa-list a { display: flex; align-items: center; gap: 10px; padding: 11px 0; text-decoration: none; }
.oa-list__rank { flex-shrink: 0; width: 22px; font-family: var(--oa-display); font-size: 18px; color: var(--oa-red); text-align: center; }
.oa-list__dot { flex-shrink: 0; width: 22px; text-align: center; }
.oa-list__dot::before { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--oa-mute); vertical-align: middle; }
.oa-list__title { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.oa-list a:hover .oa-list__title { color: var(--oa-yellow); }
.oa-list__cmt { flex-shrink: 0; font-size: 12px; font-weight: 800; color: var(--oa-yellow); }
.oa-list__date { flex-shrink: 0; font-size: 13px; color: var(--oa-mute); font-variant-numeric: tabular-nums; }
.oa-lock { font-size: 12px; }

/* ---------- callout ---------- */
.oa-callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px 44px; border-radius: var(--oa-radius); background: linear-gradient(120deg, var(--oa-red) 0%, #b0170f 100%); overflow: hidden; position: relative; }
.oa-callout::after { content: "ON AIR"; position: absolute; right: -10px; bottom: -34px; font-family: var(--oa-display); font-size: 150px; line-height: 1; color: rgba(255,255,255,.08); pointer-events: none; }
.oa-callout > * { position: relative; z-index: 1; }
.oa-callout__eyebrow { margin: 0 0 6px; font-weight: 800; letter-spacing: .12em; font-size: 13px; color: rgba(255,255,255,.8); }
.oa-callout__title { margin: 0 0 10px; font-family: var(--oa-display); font-weight: 400; font-size: clamp(26px, 3vw, 36px); line-height: 1.2; }
.oa-callout__text { margin: 0; color: rgba(255,255,255,.88); max-width: 520px; }

/* ---------- 내부 페이지 : 게시판·회원·검색 등 코어 스킨이 그대로 읽히도록 밝은 지면 ---------- */
.oa-page { margin-top: 28px; padding-top: 34px; padding-bottom: 44px; background: var(--oa-paper); color: var(--oa-paper-text); border-radius: var(--oa-radius); font-size: 12px; line-height: 1.5; }
.oa-page a { color: inherit; }
.oa-page #container_title, .oa-page .oa-page__title { font-family: var(--oa-display); font-weight: 400; font-size: 30px; line-height: 1.25; margin: 0 0 22px; color: var(--oa-paper-text); }
.oa-page #mb_login, .oa-page .mbskin { max-width: 460px; margin-left: auto; margin-right: auto; }
.oa-page .oa-boards .oa-box { color: var(--oa-text); font-size: 15px; }
/* 스토어는 자체 지면(.oa-paper)을 쓰므로 바깥 지면은 투명 */
.is-shop .oa-page { background: transparent; color: var(--oa-text); padding: 0 var(--oa-gutter) 20px; margin-top: 0; font-size: 12px; }
/* 짝 스킨 '온에어 VOD'(어두운 화면)는 지면 없이 바로 올린다 */
.oa-page:has(.oav) { background: transparent; padding-top: 6px; }
.oa-amina .oa-page { font-size: 13px; }
.oa-amina .oa-page .pagination > .active > a, .oa-amina .oa-page .pagination > .active > span { background: var(--oa-red); border-color: var(--oa-red); }
#hd_pop { width: 100% !important; max-width: var(--oa-wrap); }
#hd_pop h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }

/* ---------- footer ---------- */
.oa-footer { margin-top: 48px; padding: 44px 0 36px; background: #06070a; border-top: 1px solid var(--oa-line); font-size: 14px; color: var(--oa-sub); }
.oa-main--home + .oa-footer { margin-top: 30px; }
.oa-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding-bottom: 24px; margin-bottom: 20px; border-bottom: 1px solid var(--oa-line); }
.oa-footer__tag { margin: 10px 0 0; }
.oa-footer__links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.oa-footer__links a { text-decoration: none; }
.oa-footer__links a:hover { color: #fff; }
.oa-footer__links b { color: #fff; }
.oa-footer__info { display: flex; flex-wrap: wrap; gap: 4px 18px; font-style: normal; line-height: 1.7; }
.oa-footer__info a { text-decoration: none; }
.oa-footer__copy { margin: 16px 0 0; color: var(--oa-mute); font-size: 13px; }
.oa-top { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; place-items: center; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--oa-red); color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.4); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s; }
.oa-top.is-show { opacity: 1; visibility: visible; transform: none; }

/* ---------- 반응형 ---------- */
@media (max-width: 1100px) {
  .oa-hero__in { grid-template-columns: minmax(0, 1fr) 300px; }
  .oa-rail__track { grid-auto-columns: calc((100% - 2 * 18px) / 3); }
}
@media (max-width: 960px) {
  :root { --oa-head-h: 62px; --oa-gutter: 18px; }
  .oa-nav, .oa-ticker__util { display: none; }
  .oa-icon--menu { display: inline-grid; }
  .oa-hero__in { grid-template-columns: 1fr; }
  .oa-feature { min-height: 380px; }
  .oa-boards { grid-template-columns: 1fr 1fr; }
  .oa-boards > :last-child { grid-column: 1 / -1; }
  .oa-rail__track { grid-auto-columns: calc((100% - 18px) / 2.3); }
}
@media (max-width: 640px) {
  :root { --oa-gutter: 16px; }
  body.oa-body { font-size: 15px; }
  .oa-ticker__clock { display: none; }
  .oa-logo__sub { display: none; }
  .oa-logo__name { font-size: 22px; }
  .oa-header__in { gap: 12px; }
  .oa-cta { height: 38px; padding: 0 14px; font-size: 14px; }
  .oa-icon { width: 38px; height: 38px; }
  .oa-hero { padding-top: 16px; }
  .oa-feature { min-height: 0; aspect-ratio: auto; display: flex; flex-direction: column; }
  .oa-feature__media { position: relative; inset: auto; aspect-ratio: 16 / 9; z-index: 0; }
  .oa-feature__media::after { background: linear-gradient(0deg, rgba(18,21,29,1) 0%, rgba(18,21,29,0) 45%); }
  .oa-feature__play { width: 52px; height: 52px; right: 14px; top: 14px; }
  .oa-feature__body { position: relative; padding: 4px 20px 22px; }
  .oa-feature__title { font-size: 26px; }
  .oa-boards { grid-template-columns: 1fr; }
  .oa-box { padding: 18px 18px 8px; }
  .oa-rail__track { grid-auto-columns: 72%; gap: 14px; }
  .oa-rail__ctrl .oa-icon { display: none; }
  .oa-section { padding-top: 32px; }
  .oa-callout { flex-direction: column; align-items: flex-start; padding: 30px 24px; }
  .oa-callout::after { font-size: 90px; bottom: -18px; }
  .oa-footer__top { flex-direction: column; }
  .oa-page { margin-top: 0; padding-top: 22px; border-radius: 0; }
  .oa-page #container_title, .oa-page .oa-page__title { font-size: 24px; }
  .oa-search__in input[type=search] { height: 46px; }
  .oa-search button { height: 46px; padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .oa-ticker, .oa-header, .oa-footer, .oa-top, .oa-drawer { display: none !important; }
  body.oa-body { background: #fff; color: #000; }
}
