:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-2: #eef5f2;
  --panel: rgba(255, 255, 255, .92);
  --panel-solid: #ffffff;
  --text: #17202e;
  --muted: #617085;
  --subtle: #8a97a8;
  --line: #dce4ef;
  --line-strong: #b9c7d8;
  --accent: #14796f;
  --accent-strong: #0b5f58;
  --accent-soft: #e5f4f1;
  --rose: #cc3d63;
  --rose-soft: #ffe8ee;
  --blue: #256fba;
  --blue-soft: #e7f1ff;
  --violet: #6552c9;
  --violet-soft: #efecff;
  --amber: #9b6512;
  --amber-soft: #fff4d8;
  --shadow: 0 18px 44px rgba(25, 34, 48, .08);
  --shadow-hover: 0 22px 56px rgba(25, 34, 48, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  color: var(--text);
  letter-spacing: 0;
  background:
    linear-gradient(120deg, rgba(20, 121, 111, .08), transparent 32%),
    linear-gradient(245deg, rgba(204, 61, 99, .07), transparent 34%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 46%, var(--bg-2) 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 32, 46, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 46, .03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 72%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  color: #314054;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 228, 239, .8);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
}
.site-header-inner {
  max-width: 1220px;
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  text-decoration: none;
}
.logo-dot {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.42), transparent 42%),
    linear-gradient(135deg, var(--accent), var(--rose));
  box-shadow: 0 10px 24px rgba(20, 121, 111, .28);
  flex: 0 0 auto;
}
.site-name { display: block; font-size: 1.12rem; font-weight: 900; line-height: 1.2; }
.site-note { display: block; color: var(--muted); font-size: .78rem; font-weight: 700; }
.global-nav,
.bottom-nav,
.tiny-actions,
.refresh-row,
.thread-tabs,
.admin-nav,
.row-actions,
.inline-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.global-nav { justify-content: flex-end; }
.global-nav a,
.bottom-nav a,
.chip,
.thread-tabs a,
.admin-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 228, 239, .95);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
  padding: 8px 12px;
  color: #253248;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.global-nav a:hover,
.bottom-nav a:hover,
.chip:hover,
.thread-tabs a:hover,
.admin-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 121, 111, .35);
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 34, 48, .08);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 22px 20px 92px;
}
.flash {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  margin-bottom: 14px;
  font-weight: 800;
  animation: fadeUp .26s ease both;
}
.flash.error { border-left-color: var(--rose); }
.flash.success { border-left-color: var(--accent); }

.date-shell { margin-bottom: 16px; }
.date-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(88px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}
.date-card {
  min-height: 92px;
  border: 1px solid rgba(220, 228, 239, .95);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  color: var(--text);
  cursor: pointer;
  padding: 10px;
  text-align: left;
  box-shadow: 0 10px 26px rgba(25,34,48,.05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.date-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 111, 186, .28);
  background: #fff;
  box-shadow: var(--shadow);
}
.date-card.active {
  border-color: rgba(20, 121, 111, .62);
  background: linear-gradient(180deg, #fff, var(--accent-soft));
  box-shadow: inset 0 0 0 2px rgba(20, 121, 111, .12), 0 14px 34px rgba(20,121,111,.12);
}
.today-label,
.dow,
.day,
.count { display: block; }
.today-label { min-height: 1em; color: var(--rose); font-size: .72rem; font-weight: 900; }
.dow { color: var(--muted); font-size: .82rem; font-weight: 800; }
.day { margin-top: 2px; font-size: 1.62rem; font-weight: 950; line-height: 1.05; }
.count { margin-top: 4px; color: var(--muted); font-size: .78rem; font-weight: 800; }

.summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}
.panel,
.mini-panel {
  border: 1px solid rgba(220, 228, 239, .92);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.panel {
  padding: 20px;
  animation: fadeUp .32s ease both;
}
.mini-panel {
  padding: 15px;
  margin-bottom: 14px;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.section-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.32;
  font-weight: 950;
}
.section-sub {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.mini-title {
  margin: 16px 0 11px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 900;
}
.chip {
  cursor: pointer;
  color: #253248;
}
.chip.primary,
.thread-tabs a.active {
  border-color: rgba(20, 121, 111, .45);
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.refresh-row {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 0 rgba(204, 61, 99, .42);
  margin-right: 6px;
  animation: livePulse 1.7s ease-out infinite;
}

#schedule-fragment {
  position: relative;
  min-height: 70px;
}
#schedule-fragment.is-loading {
  pointer-events: none;
}
#schedule-fragment.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.72), transparent);
  background-size: 220% 100%;
  animation: shimmer 1s linear infinite;
}
.schedule-list {
  display: grid;
  gap: 14px;
}
.date-heading {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 900;
}
.time-group {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
}
.time {
  position: sticky;
  top: 86px;
  align-self: start;
  padding-top: 12px;
  color: #253248;
  font-size: 1.02rem;
  font-weight: 950;
}
.time .small {
  display: block;
  margin-top: 2px;
  color: var(--subtle);
  font-size: .72rem;
  font-weight: 900;
}
.streams { display: grid; gap: 10px; }
.stream-card {
  position: relative;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 13px;
  overflow: hidden;
  border: 1px solid rgba(220, 228, 239, .95);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  padding: 10px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.stream-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--violet);
}
.stream-card.live::before { background: var(--rose); }
.stream-card.upcoming::before { background: var(--blue); }
.stream-card.recent::before { background: var(--violet); }
.stream-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-hover);
}
.thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(135deg, #dfe6ef, #f4f7fb);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}
.stream-card:hover .thumb img { transform: scale(1.035); }
.thumb span {
  position: absolute;
  left: 7px;
  bottom: 7px;
  border-radius: 6px;
  background: rgba(15, 23, 42, .76);
  color: #fff;
  padding: 4px 7px;
  font-size: .72rem;
  font-weight: 900;
}
.meta { min-width: 0; }
.labels { display: flex; gap: 6px; flex-wrap: wrap; }
.label {
  border-radius: 6px;
  background: #eef2f7;
  color: #3c4b62;
  padding: 4px 7px;
  font-size: .72rem;
  font-weight: 900;
}
.label.live { background: var(--rose-soft); color: var(--rose); }
.label.upcoming { background: var(--blue-soft); color: var(--blue); }
.label.video { background: var(--violet-soft); color: var(--violet); }
.member {
  margin-top: 7px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}
.title {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-weight: 900;
  line-height: 1.48;
}
.subtime {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.member-grid.large { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }
.member-link,
.next-card,
.news-card,
.article-card {
  display: block;
  border: 1px solid rgba(220, 228, 239, .95);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  color: var(--text);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.member-link {
  padding: 11px;
  font-weight: 900;
}
.next-card,
.news-card,
.article-card { padding: 13px; }
.member-link:hover,
.next-card:hover,
.news-card:hover,
.article-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow);
}
.next-time {
  color: var(--accent);
  font-size: 1.52rem;
  font-weight: 950;
}
.next-title {
  margin: 5px 0;
  font-weight: 900;
}
.next-note,
.muted,
.empty {
  color: var(--muted);
  line-height: 1.7;
}
.notice-list {
  display: grid;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-list li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 8px;
  font-size: .9rem;
  line-height: 1.55;
}
.notice-date {
  color: var(--subtle);
  font-weight: 900;
}

.news-grid,
.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 13px;
}
.news-card img,
.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 9px;
  background: #e7edf5;
}
.news-card span,
.article-card time,
.article-detail time {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.news-card strong {
  display: block;
  margin-top: 5px;
  line-height: 1.5;
}
.article-card h2,
.article-card h3 {
  margin: 6px 0;
  line-height: 1.42;
}
.article-detail {
  max-width: 870px;
  margin: 0 auto;
}
.article-hero {
  width: 100%;
  border-radius: 8px;
  margin: 15px 0;
}
.prose {
  overflow-wrap: anywhere;
  line-height: 1.9;
}
.prose img {
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}

.board-shell { max-width: 980px; margin: 0 auto; }
.public-thread-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  padding: 12px;
  margin: 14px 0;
}
.public-thread-box summary {
  cursor: pointer;
  font-weight: 900;
}
.comment-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}
.comment {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  padding: 13px;
}
.comment-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}
.comment p {
  margin: 9px 0 0;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.post-form,
.admin-form {
  display: grid;
  gap: 12px;
}
.admin-form.compact { max-width: 680px; }
label {
  display: grid;
  gap: 6px;
  color: #253248;
  font-weight: 850;
}
label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 8px;
}
input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  color: var(--text);
  padding: 10px 11px;
  font: inherit;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}
input[type="file"] { padding: 9px; }
textarea {
  min-height: 112px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(20, 121, 111, .62);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 121, 111, .12);
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.captcha-image {
  width: 180px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.captcha-question {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
  color: var(--accent-strong);
  font-weight: 950;
}
.primary-button,
button {
  min-height: 42px;
  border: 1px solid var(--accent-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, #16887c, var(--accent));
  color: #fff;
  padding: 10px 15px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, opacity .16s ease;
}
.primary-button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 121, 111, .18);
}
button.secondary,
.row-actions a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
button:disabled,
.is-submitting button {
  cursor: wait;
  opacity: .62;
}
.row-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 7px 10px;
  text-decoration: none;
  font-weight: 850;
}

.admin-panel {
  max-width: 1080px;
  margin: 0 auto;
}
.admin-panel.narrow { max-width: 520px; }
.admin-nav {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.admin-stats,
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 11px;
  margin-top: 16px;
}
.admin-stats div,
.health-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  padding: 15px;
}
.admin-stats strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.22rem;
  font-weight: 950;
}
.health-card {
  display: grid;
  gap: 8px;
  border-left: 4px solid var(--line-strong);
}
.health-card.ok { border-left-color: var(--accent); }
.health-card.ng { border-left-color: var(--rose); background: var(--rose-soft); }
.health-card strong { font-weight: 950; }
.health-card span { color: var(--muted); font-weight: 900; }
.table-scroll { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: .92rem;
}
.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 950;
}
.admin-table td { line-height: 1.55; }
.row-actions form { display: inline; }
.thread-admin-list {
  display: grid;
  gap: 8px;
}
.thread-admin-row,
.thread-delete-row {
  display: grid;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.8);
  padding: 9px;
}
.thread-admin-row { grid-template-columns: 130px minmax(160px, 1fr) 124px 92px auto; }
.thread-delete-row {
  grid-template-columns: minmax(0, 1fr);
  margin-top: -5px;
  background: transparent;
  border-color: transparent;
  padding: 0 9px 5px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 13px;
  margin-top: 15px;
}
.media-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  padding: 11px;
}
.media-card.hidden,
.media-card.deleted {
  opacity: .58;
}
.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #e7edf5;
}
.media-card code {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: .75rem;
}
.editor-toolbar-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.4fr) auto;
  align-items: end;
  gap: 10px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: rgba(255,255,255,.58);
  padding: 10px;
}
.editor-form .quill-editor {
  min-height: 300px;
  background: #fff;
}
.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  border-color: var(--line);
}
.ql-toolbar.ql-snow {
  border-radius: 8px 8px 0 0;
}
.ql-container {
  min-height: 300px;
  border-radius: 0 0 8px 8px;
  font: inherit;
}
.seo-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.64);
  padding: 12px;
}
.seo-box summary {
  cursor: pointer;
  font-weight: 950;
}

.toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
}
.toast {
  transform: translateY(10px);
  opacity: 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-hover);
  padding: 12px 13px;
  color: var(--text);
  font-weight: 850;
  line-height: 1.55;
  transition: transform .2s ease, opacity .2s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success { border-left-color: var(--accent); }
.toast.error { border-left-color: var(--rose); }
.bottom-nav { display: none; }

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(204, 61, 99, .42); }
  70% { box-shadow: 0 0 0 8px rgba(204, 61, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 61, 99, 0); }
}
@keyframes shimmer {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}
@keyframes fadeUp {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 900px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .global-nav { justify-content: flex-start; }
  .summary { grid-template-columns: 1fr; }
  .time-group { grid-template-columns: 1fr; }
  .time {
    position: static;
    padding-top: 0;
  }
  .thread-admin-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .page { padding: 14px 10px 82px; }
  .panel { padding: 14px; }
  .panel-header { display: grid; }
  .section-title { font-size: 1.32rem; }
  .date-strip { grid-auto-columns: minmax(78px, 1fr); gap: 8px; }
  .date-card { min-height: 82px; padding: 8px; }
  .day { font-size: 1.42rem; }
  .stream-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
  }
  .title { font-size: .92rem; }
  .member-grid { grid-template-columns: 1fr; }
  .global-nav { display: none; }
  .thread-admin-row,
  .thread-delete-row { grid-template-columns: 1fr; }
  .editor-toolbar-row { grid-template-columns: 1fr; }
  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .admin-table td { white-space: normal; }
  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    padding: 8px;
  }
  .bottom-nav a {
    min-height: 40px;
    padding: 8px 4px;
    font-size: .82rem;
  }
  .toast-root {
    right: 10px;
    bottom: 72px;
    width: calc(100vw - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
