/* Shared presentation layer for NNN qualification pages. */
:root {
  --ink: #202a31;
  --text: var(--ink);
  --muted: #59676f;
  --paper: #f5f7f8;
  --panel: #fff;
  --line: #dce3e6;
  --green: #176b59;
  --green-dark: #115443;
  --blue: #286884;
  --amber: #9b5738;
  --shadow: none;
}

body,
.portal-page,
.quiz-page {
  background: var(--paper);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0;
}

button, select, input, textarea { font: inherit; }
button, a, summary, select { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { color: var(--ink); overflow-wrap: anywhere; }
p, li, a, strong, small { overflow-wrap: anywhere; }
section[id], main[id] { scroll-margin-top: 96px; }
:focus-visible { outline: 3px solid #286884; outline-offset: 4px; }
a:hover { text-underline-offset: 4px; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  color: white;
  background: var(--ink);
}
.skip-link:focus { top: 10px; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.masthead-inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.masthead .brand { min-width: 0; gap: 10px; }
.masthead .brand-mark {
  background: var(--green);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-size: 23px;
}
.masthead .brand strong { font-size: 21px; font-weight: 800; }
.masthead .brand small { margin-top: 4px; font-size: 10px; color: var(--muted); }
.masthead details { padding: 0; margin: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.nav-menu > summary { display: none; }
.nav-links { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; }
.nav-links > a, .nav-group > summary { display: block; padding: 12px 13px; border-radius: 4px; }
.nav-links > a:hover, .nav-group > summary:hover, .nav-links a[aria-current="page"] { color: var(--green-dark); background: #edf5f2; }
.nav-group { position: relative; }
.nav-group > summary { display: list-item; list-style-position: inside; cursor: pointer; }
.nav-group > summary::marker { color: #718078; font-size: 9px; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px #202a3114;
}
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 3px; }
.nav-dropdown a:hover { color: var(--green-dark); background: #edf5f2; }
.nav-dropdown small { display: block; padding: 8px 12px 2px; color: var(--muted); font-weight: 400; }

.last-updated { width: min(1120px, calc(100% - 48px)); margin: 18px auto 0; font-size: 11px; font-weight: 400; text-align: right; }
.button { min-height: 44px; padding: 10px 18px; border-radius: 4px; font-size: 14px; line-height: 1.6; font-weight: 700; box-shadow: none; transition: background .15s, border-color .15s; }
.button:hover { transform: none; }
.button.primary { background: var(--green); box-shadow: none; }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { background: white; border-color: #cbd5d9; color: var(--ink); }
.button.secondary:hover { border-color: var(--green); background: #f2f7f5; }
.label, .eyebrow { color: var(--green); font-size: 12px; font-weight: 700; line-height: 1.6; }
.label { background: transparent; border: 0; border-radius: 0; padding: 0; min-height: 0; }
.tag, .source-tag { border-radius: 3px; font-size: 11px; font-weight: 700; background: #edf2f5; color: var(--blue); border: 0; }
.ad-label { min-height: 20px; border: 1px solid #d7dadd; border-radius: 2px; padding: 0 6px; background: #fff; color: #63666a; font-size: 11px; font-weight: 400; }

.study-intro { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 16px 0 18px; }
.study-intro .eyebrow { margin: 0 0 8px; }
.study-intro h1 { margin: 0; font-size: 32px; line-height: 1.4; font-weight: 800; }
.study-intro .intro-lead { margin: 6px 0 0; color: var(--ink); font-size: 17px; font-weight: 500; }
.study-intro p:last-child { margin: 8px 0 0; max-width: 760px; color: var(--muted); font-size: 14px; }
.study-area { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 0 0 40px; }
.study-heading { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; margin: 0 0 16px; }
.study-heading h2 { margin: 0; font-size: 21px; line-height: 1.5; }
.study-heading > a { color: var(--green); font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.study-courses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.study-course { --course-color: var(--green); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-top: 3px solid var(--course-color); border-radius: 6px; background: white; }
.study-course.investigator { --course-color: var(--blue); }
.study-course > img { display: block; width: 100%; height: 132px; object-fit: cover; object-position: center 43%; }
.study-course-body { padding: 22px 24px 24px; display: flex; flex: 1; flex-direction: column; }
.study-course .course-type { color: var(--course-color); font-size: 12px; font-weight: 700; }
.study-course h3 { margin: 6px 0 10px; font-size: 22px; line-height: 1.5; }
.study-course h3 small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.study-course p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.study-course .course-facts { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 18px; font-size: 12px; color: var(--muted); }
.study-course .course-facts span + span { border-left: 1px solid var(--line); padding-left: 18px; }
.study-course .button { margin-top: auto; background: var(--course-color); }
.study-course .button:hover { background: var(--ink); }
.study-course .course-secondary { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 14px; }
.course-secondary a { color: var(--course-color); font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.study-disclaimer { margin: 14px 0 0; font-size: 12px; color: var(--muted); }
.guide-band { background: white; border-block: 1px solid var(--line); }
.guide-band-inner { width: min(1120px, calc(100% - 48px)); padding: 36px 0; margin: auto; }
.guide-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; }
.guide-link { display: grid; grid-template-columns: 34px 1fr 20px; align-items: center; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.guide-link .guide-number { color: var(--blue); font-size: 13px; font-variant-numeric: tabular-nums; }
.guide-link strong { display: block; font-size: 15px; font-weight: 700; }
.guide-link small { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }
.guide-link .guide-arrow { color: var(--green); }
.guide-link:hover strong { color: var(--green); text-decoration: underline; text-underline-offset: 4px; }
.study-after { width: min(1120px, calc(100% - 48px)); margin: auto; padding: 36px 0; }
.study-after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.study-after h2 { margin: 0 0 10px; font-size: 20px; }
.study-after p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
.text-link { color: var(--green); text-decoration: underline; text-underline-offset: 4px; font-size: 14px; font-weight: 700; }
.editorial-note { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0; border-top: 1px solid var(--line); }
.editorial-note h2 { margin: 0 0 8px; font-size: 16px; }
.editorial-note p { max-width: 850px; margin: 0; font-size: 13px; color: var(--muted); }

.content-with-toc { width: min(1120px, calc(100% - 48px)); grid-template-columns: minmax(0, 1fr) 180px; gap: 40px; }
.section, .ishiwata-home .section { padding: 40px 0; }
.section-heading, .ishiwata-home .section-heading { margin-bottom: 24px; }
.section-heading h2, .ishiwata-home .section-heading h2, .portal-section-heading h2 { font-size: 25px; line-height: 1.55; margin: 8px 0 12px; }
.section-heading p:not(.label) { font-size: 15px; max-width: 750px; color: var(--muted); }
.content-with-toc > .page-toc { top: 106px; margin-top: 40px; }
.page-toc, .article-sidebar nav { border: 0; border-left: 1px solid var(--line); border-radius: 0; padding: 8px 0 8px 18px; background: none; box-shadow: none; backdrop-filter: none; }
.page-toc { gap: 4px; }
.page-toc strong, .article-sidebar strong { color: var(--muted); font-size: 11px; font-weight: 500; }
.page-toc a, .article-sidebar a { padding: 8px 0; font-size: 12px; font-weight: 500; }
.page-toc a:hover, .article-sidebar a:hover { background: none; text-decoration: underline; text-underline-offset: 4px; }
.purpose-grid { gap: 0; border-block: 1px solid var(--line); }
.purpose-card { border: 0; border-right: 1px solid var(--line); border-radius: 0; padding: 22px; background: none; box-shadow: none; }
.purpose-card:first-child { padding-left: 0; }
.purpose-card:last-child { padding-right: 0; border-right: 0; }
.purpose-card h3 { font-size: 18px; line-height: 1.65; }
.purpose-card > span { padding: 0; border-radius: 0; color: var(--blue); background: none; font-size: 12px; }
.purpose-card p { margin: 0; font-size: 13px; color: var(--muted); }
.purpose-actions { gap: 8px; }
.purpose-actions a { min-height: 40px; font-size: 12px; padding: 8px 10px; }
.source-grid.resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.source-card, .source-card.official, .job-card { background: white; box-shadow: none; border: 1px solid var(--line); padding: 22px; min-height: 0; }
.source-card p { font-size: 14px; }
.source-card a { font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.credibility-card { border: 0; border-radius: 0; border-block: 1px solid var(--line); padding: 28px 0; box-shadow: none; background: none; }
.credibility-card h2 { font-size: 22px; line-height: 1.55; }
.credibility-card dl { background: transparent; }
.wide-figure { margin: 24px 0; }
.wide-figure img { display: block; width: 100%; object-fit: cover; max-height: 300px; border-radius: 4px; }

.article-page { width: min(1120px, calc(100% - 48px)); }
.article-hero { padding: 30px 0; }
.article-hero h1 { font-size: 34px; line-height: 1.55; max-width: 900px; margin: 12px 0 16px; }
.article-hero p { font-size: 15px; }
.article-hero .label { font-size: 12px; }
.article-meta { color: var(--muted); font-size: 12px; }
.article-hero-image { border: 0; border-radius: 4px; margin: 24px 0 0; }
.article-hero-image img { width: 100%; height: 240px; object-fit: cover; object-position: center 45%; }
.article-layout { grid-template-columns: minmax(0, 800px) 180px; justify-content: space-between; gap: 40px; padding-top: 36px; }
.article-sidebar { position: sticky; top: 106px; grid-column: 2; grid-row: 1; }
.article-body { grid-column: 1; grid-row: 1; font-size: 16px; line-height: 1.95; }
.article-body h2, .article-body .compact-heading h2 { padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 18px; font-size: 25px; line-height: 1.6; }
.article-body h3 { font-size: 19px; line-height: 1.65; }
.article-body p { color: #3d4a51; }
.article-body section { margin-bottom: 44px; }
.article-lead { border: 0; border-left: 3px solid var(--blue); border-radius: 0; padding: 0 0 0 24px; background: none; }
.section-card { background: none; border-radius: 0; }
.summary-box, .mini-cta, .affiliate-box { border: 0; border-block: 1px solid #cbded9; border-radius: 0; background: #edf4f1; padding: 24px; }
.article-body .affiliate-box h2, .summary-box h2, .sponsor-panel h2, .sponsor-panel h3 { border: 0; padding: 0; font-size: 21px; line-height: 1.6; }
.material-row { border-radius: 4px; border-color: var(--line); background: #fff; box-shadow: none; }
.row-icon { background: #edf2f5; color: var(--blue); border-radius: 4px; font-size: 15px; }
.sponsor-panel, .text-ad-panel { border: 0; border-block: 1px solid var(--line); border-radius: 0; padding: 24px 0; background: none; box-shadow: none; }
.sponsor-text-link a, .text-ad-list a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.sponsor-banner img { border-radius: 0; box-shadow: none; }
.career-compare-table thead th, .table-head { background: #edf2f5; color: var(--ink); }
.career-compare-table tbody th { background: #f7f9fa; }
.career-table-wrap { border-radius: 4px; }
.source-note { background: #f7f2ef; border-color: #a66a48; font-size: 14px; }

.quiz-hero { grid-template-columns: minmax(0, 1fr); gap: 0; margin: 20px auto 0; width: min(1120px, calc(100% - 48px)); }
.quiz-hero h1 { margin: 6px 0 10px; font-size: 28px; line-height: 1.5; }
.quiz-hero p:not(.label) { max-width: 850px; margin: 0; font-size: 14px; }
.quiz-hero .label { margin: 0; }
.quiz-content-with-toc { grid-template-columns: minmax(0, 1fr); }
.quiz-content-with-toc > .page-toc { position: static; grid-row: 1; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; border: 0; border-bottom: 1px solid var(--line); padding: 12px 0; margin: 0; }
.quiz-content-with-toc { gap: 0; }
.quiz-page .quiz-only { padding-top: 24px; }
.quiz-only .test-layout { grid-template-columns: minmax(0, 1fr) 240px; gap: 28px; }
.quiz-card { grid-column: 1; grid-row: 1; padding: 28px 32px; border-radius: 6px; border: 1px solid var(--line); box-shadow: none; background: #fff; min-width: 0; }
.test-panel { grid-column: 2; grid-row: 1; padding: 12px 0; background: none; border: 0; box-shadow: none; border-radius: 0; min-width: 0; }
.score-card { margin: 0 0 18px; padding: 0 0 18px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: none; }
.score-card span { font-size: 12px; color: var(--muted); }
.score-card strong { font-size: 30px; font-weight: 700; font-variant-numeric: tabular-nums; }
.quiz-status { display: flex; flex-wrap: wrap; gap: 8px; }
.quiz-status span { padding: 0; color: var(--muted); background: none; font-size: 12px; font-weight: 400; }
.test-panel .button { font-size: 12px; }
.quiz-length-control { font-size: 12px; }
.quiz-length-control select { font-size: 14px; min-height: 42px; border-color: #bccad0; }
.quiz-meta { align-items: center; gap: 8px; padding-bottom: 16px; border-bottom: 1px solid var(--line); flex-wrap: wrap; font-size: 12px; }
#questionCount { color: var(--green); font-size: 14px; }
#categoryBadge { padding: 3px 9px; border-radius: 3px; background: #edf2f5; color: var(--blue); }
.quiz-card h3 { font-size: 20px; line-height: 1.8; min-height: 72px; margin: 20px 0; }
.choice { grid-template-columns: 28px minmax(0, 1fr); min-height: 58px; padding: 14px 16px; border-radius: 4px; font-size: 15px; line-height: 1.8; }
.choice-index { width: 28px; height: 28px; border: 1px solid #ccd8dd; border-radius: 50%; background: #f5f7f8; color: var(--muted); font-size: 12px; }
.choice.correct .choice-index { background: var(--green); color: white; border-color: var(--green); }
.choice.wrong .choice-index { background: #ac3c38; color: white; border-color: #ac3c38; }
.choice:disabled { cursor: default; opacity: 1; }
.choice:disabled:not(.correct):not(.wrong):hover { border-color: var(--line); background: white; }
.quiz-actions { justify-content: space-between; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.quiz-actions .button { min-width: 125px; }
.answer-box { background: #edf5f1; border-radius: 0; font-size: 14px; }
.choice-explanation { background: transparent; box-shadow: none; }
.resume-panel { border-radius: 4px; }
.sample-question-card { background: white; box-shadow: none; }
.sample-question-card h3 { font-size: 17px; }

.legal-page { padding: 28px 0 0; }
.legal-content { background: none; border: 0; padding: 0; }
.legal-content h1 { font-size: 32px; line-height: 1.5; }
.legal-content h2 { font-size: 23px; }
.site-footer { width: 100%; display: flex; flex-wrap: wrap; background: #edf1f3; color: var(--muted); padding: 32px max(24px, calc((100% - 1120px) / 2)); margin: 48px 0 0; gap: 20px 40px; border-top: 1px solid var(--line); }
.site-footer strong { color: var(--ink); font-size: 15px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: 12px; font-weight: 400; }
.footer-nav { flex: 1; justify-content: flex-start; gap: 8px 20px; }
.site-footer a:hover { color: var(--green); text-decoration: underline; }

@media (max-width: 980px) {
  .masthead-inner { gap: 16px; }
  .nav-links { gap: 0; font-size: 12px; }
  .nav-links > a, .nav-group > summary { padding: 12px 9px; }
  .content-with-toc, .article-layout { gap: 28px; grid-template-columns: minmax(0, 1fr) 150px; }
  .quiz-content-with-toc { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .quiz-only .test-layout { grid-template-columns: minmax(0, 1fr) 205px; gap: 20px; }
  .quiz-card { padding: 24px; }
  .study-course h3 { font-size: 20px; }
}

@media (max-width: 760px) {
  section[id], main[id] { scroll-margin-top: 80px; }
  .masthead-inner { width: calc(100% - 32px); min-height: 62px; }
  .masthead .brand strong { font-size: 18px; }
  .masthead .brand-mark { width: 32px; height: 32px; font-size: 20px; }
  .nav-menu > summary { display: list-item; list-style-position: inside; padding: 10px 0 10px 12px; font-size: 12px; color: var(--ink); }
  .nav-links { position: absolute; top: 100%; left: 0; width: 100%; padding: 12px 20px 20px; display: grid; align-items: start; background: white; border-bottom: 1px solid var(--line); max-height: calc(100dvh - 70px); overflow-y: auto; font-size: 14px; }
  .nav-links > a, .nav-group > summary { padding: 12px; }
  .nav-dropdown { position: static; width: 100%; border: 0; border-left: 2px solid var(--line); box-shadow: none; margin: 0 0 8px 12px; padding: 0; width: calc(100% - 12px); }
  .last-updated { width: calc(100% - 32px); margin-top: 12px; font-size: 10px; }
  .study-intro, .study-area, .guide-band-inner, .study-after, .editorial-note, .content-with-toc, .article-page, .quiz-hero { width: calc(100% - 32px); }
  .study-intro { padding: 22px 0; }
  .study-intro h1 { font-size: 28px; }
  .study-intro .intro-lead { font-size: 15px; }
  .study-intro p:last-child { font-size: 13px; }
  .study-courses { gap: 16px; }
  .study-course > img { height: 120px; }
  .study-course-body { padding: 18px; }
  .study-course h3 { font-size: 19px; }
  .study-course p { font-size: 13px; }
  .study-course .course-secondary { gap: 8px 18px; }
  .study-heading h2 { font-size: 19px; }
  .guide-list { column-gap: 24px; }
  .guide-link { grid-template-columns: 24px minmax(0, 1fr) 16px; gap: 8px; }
  .study-after-grid { gap: 24px; }
  .content-with-toc, .article-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .content-with-toc:not(.quiz-content-with-toc) > .page-toc { position: static; grid-row: 1; display: flex; flex-wrap: wrap; gap: 6px 16px; border: 0; border-bottom: 1px solid var(--line); margin: 16px 0 0; padding: 12px 0; }
  .content-with-toc > .page-toc strong { width: 100%; }
  .article-sidebar { position: static; grid-column: 1; grid-row: 1; margin-bottom: 28px; }
  .article-sidebar nav { display: flex; flex-wrap: wrap; gap: 4px 16px; border: 0; border-bottom: 1px solid var(--line); padding: 0 0 16px; }
  .article-sidebar strong { width: 100%; }
  .article-body { grid-row: 2; font-size: 15px; }
  .article-hero { padding: 22px 0; }
  .article-hero h1 { font-size: 27px; line-height: 1.6; }
  .article-hero-image img { height: 200px; }
  .article-body h2, .article-body .compact-heading h2, .section-heading h2, .ishiwata-home .section-heading h2 { font-size: 22px; }
  .article-lead { padding-left: 18px; }
  .quiz-hero h1 { font-size: 23px; }
  .quiz-content-with-toc > .page-toc { gap: 12px; margin-top: 10px; }
  .quiz-content-with-toc > .page-toc strong { width: auto; }
  .quiz-only .test-layout { grid-template-columns: minmax(0, 1fr); }
  .test-panel { grid-row: 2; grid-column: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; padding: 12px 0; }
  .score-card { margin: 0; border: 0; padding: 0; }
  .quiz-status { align-content: center; margin: 0; }
  .test-panel .quiz-length-control, .test-panel .note { grid-column: 1 / -1; margin: 0; }
  .quiz-length-control { display: grid; grid-template-columns: 1fr 2fr; align-items: center; }
  .test-panel .button + .button { margin: 0; }
  .quiz-card { padding: 22px; }
  .quiz-card h3 { font-size: 18px; }
  .quiz-hero p:not(.label) { font-size: 13px; }
  .sponsor-panel { grid-template-columns: minmax(0, 1fr); }
  .sponsor-banner { justify-self: start; }
  .site-footer { padding: 28px 16px; }
}

@media (max-width: 520px) {
  .study-courses, .guide-list, .study-after-grid { grid-template-columns: minmax(0, 1fr); }
  .study-course > img { height: 110px; }
  .study-course-body { padding: 18px 20px; }
  .study-course h3 { font-size: 21px; }
  .study-course .course-facts { margin-bottom: 14px; }
  .study-area { padding-bottom: 28px; }
  .guide-band-inner { padding: 28px 0; }
  .guide-link { padding: 18px 0; }
  .study-after { padding: 28px 0; }
  .purpose-grid { grid-template-columns: minmax(0, 1fr); }
  .purpose-card, .purpose-card:first-child, .purpose-card:last-child { border: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .purpose-card:last-child { border-bottom: 0; }
  .source-grid.resource-grid { grid-template-columns: minmax(0, 1fr); }
  .article-hero h1 { font-size: 24px; }
  .article-hero-image img { height: 170px; }
  .article-body h2, .article-body .compact-heading h2 { font-size: 21px; }
  .quiz-hero h1 { font-size: 21px; }
  .quiz-card { padding: 18px 16px; }
  .quiz-card h3 { font-size: 17px; margin: 18px 0; }
  .choice { padding: 12px; gap: 10px; font-size: 14px; }
  .quiz-actions .button { min-width: 0; flex: 1; padding: 10px; font-size: 13px; }
  .quiz-length-control { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .test-panel { gap: 12px; }
  .summary-box, .affiliate-box, .mini-cta { padding: 18px; }
  .legal-content h1 { font-size: 26px; }
}

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