@charset "UTF-8";
/* ==========================================================================
   전주비전대학교 아동복지상담과 — 공통 스타일시트
   색상 톤: 밝은 바이올렛 + 로고의 초록
   이 파일 하나만 고치면 모든 페이지의 디자인이 함께 바뀝니다.
   ========================================================================== */

/* 글꼴은 각 html 파일 <head> 의 <link> 로 불러옵니다 (IBM Plex Sans KR) */

/* ---------- 1. 디자인 토큰 (색·간격·글꼴) ---------- */
:root {
  --brand:        #6B50C4;   /* 밝은 바이올렛 — 주요 색 */
  --brand-dark:   #573FA6;
  --brand-light:  #F2EDFD;
  --accent:       #2FA786;   /* 로고의 초록 — 강조 색 */
  --accent-dark:  #21886B;
  --accent-light: #E6F6F1;
  --ink:          #332B44;   /* 본문 글자 */
  --ink-soft:     #645C78;   /* 보조 글자 */
  --ink-faint:    #9089A1;
  --cream:        #FCFAFE;   /* 페이지 배경 */
  --card:         #ffffff;
  --line:         #EEE9F7;
  --line-strong:  #DCD4EE;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(43,35,32,.06), 0 2px 8px rgba(43,35,32,.05);
  --shadow-md: 0 4px 12px rgba(43,35,32,.07), 0 12px 32px rgba(43,35,32,.06);
  --maxw: 1120px;

  --sans: "IBM Plex Sans KR", -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;
}

/* ---------- 2. 기본값 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink);
  background: var(--cream);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.4; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.012em; }
h1 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 1.15rem + 1.3vw, 2.05rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }
strong { font-weight: 700; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: .7em 1.2em; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3. 레이아웃 도우미 ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(48px, 6vw, 86px) 0; }
.section--tint { background: var(--brand-light); }
.section--cream { background: #fff; }
.center { text-align: center; }
.lead { font-size: 1.08rem; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  color: var(--accent-dark); text-transform: uppercase;
  margin-bottom: .6em;
}

.section-head { max-width: 760px; margin-bottom: 2.2rem; }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.grid-sem { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 34px; }
@media (max-width: 760px) { .grid-sem { grid-template-columns: 1fr; } }

/* ---------- 4. 헤더 / 내비게이션 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,250,254,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 82px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 52px; height: 52px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.22; }
.brand-univ { font-size: .85rem; color: var(--ink-soft); letter-spacing: .01em; }
.brand-dept { font-size: 1.34rem; font-weight: 700; color: var(--brand); letter-spacing: -.035em; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: 10px; width: 44px; height: 40px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

.site-nav ul {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  display: block; padding: 9px 13px; border-radius: 9px;
  font-size: .95rem; font-weight: 600; color: var(--ink-soft);
}
.site-nav a:hover { background: var(--brand-light); color: var(--brand); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--brand); background: var(--brand-light); }

@media (max-width: 460px) {
  .brand img { width: 44px; height: 44px; }
  .brand-dept { font-size: 1.14rem; }
  .brand-univ { font-size: .78rem; }
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 10px 20px 18px; gap: 0; }
  .site-nav a { padding: 13px 12px; border-radius: 10px; font-size: 1rem; }
}

/* ---------- 5. 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .78em 1.5em; border-radius: 999px;
  font-weight: 700; font-size: .97rem; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background-color .16s ease, box-shadow .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 6. 카드 ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: var(--accent-light); color: var(--accent-dark);
  font-size: 1.35rem;
}
.card--link { display: block; color: inherit; transition: transform .14s ease, box-shadow .14s ease; }
.card--link:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- 7. 히어로 ---------- */
.hero {
  background:
    radial-gradient(1000px 480px at 88% -8%, var(--accent-light) 0%, transparent 62%),
    radial-gradient(900px 500px at 4% 105%, var(--brand-light) 0%, transparent 60%),
    var(--cream);
  padding: clamp(52px, 7vw, 96px) 0 clamp(48px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; gap: 44px; grid-template-columns: 1.05fr .95fr; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: .45em; }
.hero .lead { font-size: 1.14rem; max-width: 34em; }
.hero-figure {
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  padding: 26px; box-shadow: var(--shadow-md);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 28px; padding-top: 26px; border-top: 1px dashed var(--line-strong);
}
.hero-stats div { text-align: left; }
.hero-stats b { display: block; font-size: 1.5rem; color: var(--brand); letter-spacing: -.03em; }
.hero-stats span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- 8. 페이지 헤더 (하위 페이지 상단) ---------- */
.page-hero {
  background:
    radial-gradient(700px 320px at 88% 0%, #E4F6F0 0%, transparent 65%),
    linear-gradient(160deg, #F5F1FE 0%, #EBE3FB 65%, #F4F0FD 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 5.5vw, 76px) 0;
}
.page-hero h1 { color: var(--brand); margin-bottom: .3em; }
.page-hero p { color: var(--ink-soft); max-width: 46em; margin-bottom: 0; font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--accent-dark); }

.breadcrumb { background: #fff; border-bottom: 1px solid var(--line); font-size: .87rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .45em; list-style: none; margin: 0; padding: 11px 0; }
.breadcrumb li { color: var(--ink-faint); margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: .45em; color: var(--line-strong); }
.breadcrumb a { color: var(--ink-soft); }

/* ---------- 9. 표 ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.2em; }
table {
  width: 100%; border-collapse: collapse; background: #fff;
  font-size: .95rem; min-width: 520px;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
caption { text-align: left; font-size: .9rem; color: var(--ink-faint); padding-bottom: .6em; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { background: var(--brand); color: #fff; font-weight: 700; font-size: .9rem; white-space: nowrap; }
tbody tr:nth-child(even) { background: #fdfbf8; }
tbody tr:last-child td { border-bottom: 0; }
td.year, th.year { white-space: nowrap; font-weight: 700; color: var(--brand); background: var(--brand-light); }

/* 좁은 표(교과목명 + 학점) */
table.table--slim { min-width: 0; }
table.table--slim td:last-child,
table.table--slim th:last-child { text-align: center; }
table.table--slim td:first-child { font-weight: 600; }

/* ---------- 10. 뱃지 / 칩 ---------- */
.badge {
  display: inline-block; padding: .28em .7em; border-radius: 999px;
  font-size: .76rem; font-weight: 700; line-height: 1.5;
  background: var(--brand-light); color: var(--brand);
}
.badge--accent { background: var(--accent-light); color: var(--accent-dark); }
.badge--sample { background: #fff4d6; color: #8a6100; border: 1px dashed #d9b25e; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.chips li { margin: 0; }
.chips span {
  display: inline-block; padding: .4em .85em; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-strong); font-size: .88rem; color: var(--ink-soft);
}

/* ---------- 11. 알림 박스 ---------- */
.note {
  border-left: 4px solid var(--accent); background: var(--accent-light);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem; color: #1D6E56;
}
.note strong { color: #1D6E56; }
.note p:last-child { margin-bottom: 0; }
.note--info { border-left-color: var(--brand); background: var(--brand-light); color: #46379B; }
.note--info strong { color: #46379B; }

/* ---------- 12. 교수진 카드 ---------- */
.prof {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.prof-photo {
  aspect-ratio: 4 / 3; background: linear-gradient(150deg, var(--brand-light), var(--accent-light));
  display: grid; place-items: center; color: var(--brand); border-bottom: 1px solid var(--line);
}
.prof-photo img { width: 100%; height: 100%; object-fit: cover; }
.prof-body { padding: 20px 22px 24px; flex: 1; }
.prof-body h3 { margin-bottom: .15em; }
.prof-role { font-size: .88rem; color: var(--accent-dark); font-weight: 700; margin-bottom: .8em; }
.prof-body dl { margin: 0; font-size: .9rem; }
.prof-body dt { font-weight: 700; color: var(--ink); margin-top: .7em; }
.prof-body dd { margin: 0; color: var(--ink-soft); }
.prof-body dd a { color: var(--ink); }
.prof-body dd a:hover { color: var(--brand); }

/* ---------- 13. 공지 목록 ---------- */
.notice-list { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--brand); }
.notice-list li { margin: 0; border-bottom: 1px solid var(--line); }
.notice-list > li > a {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 17px 6px; color: var(--ink);
}
.notice-list > li > a:hover { background: #fff; text-decoration: none; }
.notice-list summary:hover { background: #fff; }
.notice-list .n-title { font-weight: 600; }
.notice-list .n-date { font-size: .85rem; color: var(--ink-faint); white-space: nowrap; }
@media (max-width: 620px) {
  .notice-list > li > a,
  .notice-list summary { grid-template-columns: auto 1fr !important; }
  .notice-list .n-date { grid-column: 2; }
}

/* ---------- 14. 타임라인 ---------- */
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line-strong); }
.timeline li { position: relative; margin: 0 0 26px; padding: 0 0 0 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -8px; top: .55em;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--cream);
}
.timeline h3 { font-size: 1.05rem; margin-bottom: .2em; }
.timeline p { margin-bottom: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- 15. FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 20px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 18px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- 16. CTA 띠 ---------- */
.cta {
  background: linear-gradient(120deg, #34B692 0%, #1F8F70 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
}
.cta h2 { color: #fff; margin-bottom: .25em; }
.cta p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.cta .btn-ghost { background: #fff; border-color: #fff; color: var(--accent-dark); }

/* ---------- 17. 푸터 ---------- */
.site-footer {
  background: #F3EFFC; color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 52px 0 30px; margin-top: 0; font-size: .92rem;
}
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2, .site-footer h3 { color: var(--brand); font-size: .98rem; margin-bottom: .8em; }
.site-footer strong { color: var(--ink); }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--brand); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45em; }
.footer-brand p { color: var(--ink-faint); max-width: 32em; }
.footer-bottom {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid #E1D9F3;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  color: var(--ink-faint); font-size: .85rem;
}

/* ---------- 16-0. 영상 (16:9 반응형) ---------- */
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: #1b1512; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* 학과소개 페이지의 영상 안내 배너 (유튜브 썸네일) */
.video-cta {
  display: grid; grid-template-columns: minmax(240px, 340px) 1fr; gap: 0;
  align-items: stretch; overflow: hidden;
  background: linear-gradient(120deg, #9179E0 0%, #7A5FD0 100%);
  color: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform .14s ease, box-shadow .14s ease;
}
.video-cta:hover { text-decoration: none; color: #fff; transform: translateY(-2px); }
.video-cta:hover .play { transform: translate(-50%, -50%) scale(1.08); }

.video-cta-thumb {
  position: relative; display: block; aspect-ratio: 16 / 9;
  background: #14100e; overflow: hidden;
}
.video-cta-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-cta .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: #E08A2F; box-shadow: 0 4px 18px rgba(0,0,0,.35);
  display: grid; place-items: center;
  transition: transform .14s ease;
}
.video-cta .play::after {
  content: ""; width: 0; height: 0; margin-left: 5px;
  border-left: 19px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}

.video-cta-text { padding: 26px 30px; display: flex; flex-direction: column; justify-content: center; }
.video-cta h3 { color: #fff; margin-bottom: .3em; }
.video-cta p { color: rgba(255,255,255,.85); margin-bottom: 1.1em; font-size: .95rem; }
.video-cta .btn { align-self: flex-start; }

@media (max-width: 700px) {
  .video-cta { grid-template-columns: 1fr; }
  .video-cta-text { padding: 22px 24px 26px; }
  .video-cta .btn { align-self: stretch; justify-content: center; }
}

/* ---------- 16-0-1. 영상 썸네일 가로 목록 ---------- */
.vstrip { position: relative; }
.vstrip-list {
  display: flex; gap: 14px; list-style: none; margin: 0; padding: 4px 2px 10px;
  overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.vstrip-list li { margin: 0; flex: 0 0 clamp(180px, 24vw, 232px); scroll-snap-align: start; }

.vthumb {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden; color: var(--ink); font: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.vthumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vthumb[aria-current="true"] { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand) inset; }
.vthumb-img { display: block; position: relative; aspect-ratio: 16 / 9; background: #14100e; }
.vthumb-img img { width: 100%; height: 100%; object-fit: cover; }
.vthumb-img::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0; margin-left: 3px;
  border-left: 15px solid rgba(255,255,255,.92);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.vthumb-title {
  display: block; padding: 11px 13px 14px;
  font-size: .88rem; font-weight: 600; line-height: 1.45;
}

.vstrip-nav {
  position: absolute; top: calc(50% - 22px); transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; z-index: 2;
  background: #fff; border: 1px solid var(--line-strong); color: var(--ink);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.vstrip-nav:hover { border-color: var(--brand); color: var(--brand); }
.vstrip-nav[disabled] { opacity: 0; pointer-events: none; }
.vstrip-prev { left: 8px; }
.vstrip-next { right: 8px; }
@media (max-width: 720px) { .vstrip-nav { display: none; } }

/* ---------- 16-1. 지도 ---------- */
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--brand-light);
  line-height: 0;
}
.map-embed iframe { display: block; width: 100%; }

/* ---------- 17-1. 인라인 코드 (편집 안내용) ---------- */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em; background: rgba(43,35,32,.07);
  padding: .12em .42em; border-radius: 5px;
}

/* ---------- 18. 유틸 ---------- */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.6rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media print {
  .site-header, .site-footer, .nav-toggle, .cta { display: none !important; }
  body { background: #fff; }
}

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