:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --surface-2: #ffffff;
  --text: #111111;
  --muted: #5f6368;
  --border: rgba(17, 17, 17, 0.14);
  --accent: #111111;
  --accent-text: #ffffff;
  --radius: 8px;
  --button-radius: 6px;
  --max: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-body);
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
}

.nav-inner,
.hero,
.section,
.footer-inner {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand,
.nav-links,
.cta-row,
.official-links,
.footer-inner nav {
  display: flex;
  align-items: center;
}

.brand,
.nav-links,
.hero-copy,
.hero-media {
  min-width: 0;
}

.brand {
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--button-radius);
  background: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 13px;
}

.nav-links {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
}

.nav-links a,
.footer-inner a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 46px;
  padding: 74px 0 58px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.1;
}

h3 {
  font-size: 22px;
  line-height: 1.22;
}

h4 {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 10px;
}

.hero-points li::before,
.trust-box li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.official-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--button-radius);
  background: var(--surface-2);
  color: var(--text);
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  border-color: color-mix(in srgb, var(--accent) 70%, var(--border));
  background: var(--accent);
  color: var(--accent-text);
}

.button.subtle {
  background: transparent;
}

.hero-media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
}

.hero-media figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.section {
  padding: 58px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.58fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.section-head p,
.card p,
.article-list p,
.notice p,
.image-card p,
.device-list p,
.editorial-columns p,
.board-grid p,
.support-tree p,
.policy-box p,
.memo-box p,
.mini-index p,
.trust-box p,
.official-link span,
.data-table span {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.card,
.notice,
.article-list article,
.device-list article,
.editorial-columns article,
.board-grid article,
.support-tree article,
.policy-box,
.memo-box,
.mini-index,
.trust-box,
.image-card,
.official-link {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.card,
.notice,
.article-list article,
.device-list article,
.editorial-columns article,
.board-grid article,
.support-tree article,
.policy-box,
.memo-box,
.mini-index,
.trust-box {
  padding: 22px;
}

.card {
  display: grid;
  gap: 12px;
}

.kicker,
.device-list span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.timeline,
.notice-stack,
.article-list,
.device-list,
.editorial-columns,
.support-tree {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.timeline li > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.timeline div,
.article-list article,
.notice,
.device-list article,
.support-tree article {
  display: grid;
  gap: 10px;
}

.image-card {
  margin: 0;
  overflow: hidden;
}

.image-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

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

.editorial-lead {
  max-width: 760px;
  margin-bottom: 28px;
}

.editorial-lead p {
  color: var(--muted);
  font-size: 20px;
}

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

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.board-grid article {
  display: grid;
  gap: 10px;
}

.board-grid strong,
.memo-box dd {
  color: var(--accent);
  font-size: 22px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.data-table th,
.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 28%;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.data-table td {
  display: grid;
  gap: 4px;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.official-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.official-link {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.official-link strong {
  font-size: 20px;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-strip span,
.mini-index a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.mini-index nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.memo-box dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 12px 24px;
  margin: 22px 0 0;
}

.memo-box dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.memo-box dd {
  margin: 0;
}

.trust-box {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(260px, 0.8fr);
  gap: 30px;
}

.trust-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-box li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

footer {
  margin-top: 36px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner div {
  display: grid;
  gap: 4px;
}

.footer-inner strong {
  color: var(--text);
}

.link-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  text-decoration: none;
}

.link-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .section-head,
  .grid.three,
  .device-list,
  .editorial-columns,
  .official-links,
  .trust-box,
  .link-stack {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 44px;
  }
}

@media (max-width: 520px) {
  .nav-inner,
  .hero,
  .section,
  .footer-inner {
    width: min(var(--max), calc(100vw - 24px));
  }

  .nav-links a {
    padding: 7px 8px;
  }

  .board-grid,
  .timeline li,
  .memo-box dl {
    grid-template-columns: 1fr;
  }

  .button,
  .official-link {
    width: 100%;
  }

  .network-grid {
    grid-template-columns: 1fr;
  }
}

/* 다이노 공식 주소 네트워크 (허브앤스포크 상호링크) */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.network-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 44px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--button-radius);
  background: var(--surface-2);
  color: var(--text);
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.network-link:hover {
  border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
}

.network-link strong {
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 14px;
}

.network-link span {
  color: var(--muted);
  font-size: 13px;
}

/* ── 오버플로우 하드닝 (PC/모바일 공통) ──
   공백 없는 영문/URL 토큰(t.me/dinocasino, 다이노카지노주소.com 등)이 버튼·카드·표·
   보드셀을 벗어나 삐져나가거나 잘리는 것을 방지. keep-all로 한글은 단어 단위 유지하고,
   overflow-wrap:anywhere로 넘칠 때만 긴 토큰을 끊습니다. */
h1, h2, h3, h4, p, li, dd, dt, strong, span, a, th, td, figcaption,
.button, .official-link {
  overflow-wrap: anywhere;
  word-break: keep-all;
}

/* 그리드/플렉스 자식이 내용 폭에 막혀 안 줄어드는 경우 방지 */
.card, .notice, .article-list article, .device-list article,
.editorial-columns article, .board-grid article, .support-tree article,
.timeline div, .memo-box dd, .data-table td, .footer-inner div, .brand {
  min-width: 0;
}

/* 버튼/링크 칩: 내용이 길면 한 줄 고정 대신 줄바꿈 허용 */
.button, .official-link, .network-link, .keyword-strip span, .mini-index a {
  max-width: 100%;
  white-space: normal;
}

.button {
  text-align: center;
}

/* 데이터 표가 좁은 화면에서 가로로 밀릴 때 안전하게 스크롤 */
.module-standard {
  overflow-x: auto;
}

/* ── 공식 주소 자동 점검 상태 카드 ── */
.status-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.status-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.status-head h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.status-led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
}

.status-badge.is-ok .status-led {
  background: #1aa251;
  box-shadow: 0 0 0 4px color-mix(in srgb, #1aa251 22%, transparent);
}

.status-badge.is-warn .status-led {
  background: #d98200;
  box-shadow: 0 0 0 4px color-mix(in srgb, #d98200 22%, transparent);
}

.status-intro {
  margin: 0;
  color: var(--muted);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.status-grid > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.status-grid dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.status-grid dd {
  margin: 0;
  font-weight: 650;
}

.status-note {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.status-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.theme-mistral {
  --bg: #fffaeb;
  --surface: #fff0c2;
  --surface-2: #ffffff;
  --text: #1f1f1f;
  --muted: #55491f;
  --border: rgba(127, 99, 21, 0.28);
  --accent: #fa520f;
  --accent-text: #ffffff;
  --radius: 0px;
  --button-radius: 0px;
  --font-display: Arial, "Helvetica Neue", Helvetica, ui-sans-serif, system-ui, sans-serif;
  --font-mono: "SFMono-Regular", Menlo, Consolas, monospace;
}

/* Mistral: single weight (400), size carries hierarchy */
.theme-mistral h1,
.theme-mistral h2,
.theme-mistral h3 {
  font-weight: 400;
}

/* Billboard hero: ultra-tight leading, aggressive negative tracking */
.theme-mistral h1 {
  letter-spacing: -0.025em;
  line-height: 1;
}

.theme-mistral h2 {
  letter-spacing: -0.01em;
  line-height: 0.98;
}

/* Uppercase CTA labels, European signage formality */
.theme-mistral .button,
.theme-mistral .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.theme-mistral .button {
  font-weight: 400;
}

/* Primary action: Mistral Black dark solid on warm ground */
.theme-mistral .button.primary {
  border-color: #1f1f1f;
  background: #1f1f1f;
  color: #ffffff;
}

/* Elevated elements float in warm golden-hour light */
.theme-mistral .card,
.theme-mistral .link-card,
.theme-mistral .hero-media,
.theme-mistral .image-card {
  box-shadow:
    rgba(127, 99, 21, 0.12) -8px 16px 39px,
    rgba(127, 99, 21, 0.08) -24px 48px 72px;
}

/* Signature block gradient: yellow -> amber -> orange -> flame */
.theme-mistral .brand-mark {
  background: linear-gradient(90deg, #ffd900 0%, #ffa110 38%, #ff8105 70%, #fa520f 100%);
  border: 0;
  border-radius: 0;
  color: #1f1f1f;
}

/* ---- poster 골격 (다이노.io 전용 브루탈리스트 포스터) ---- */

.theme-mistral .poster-main {
  display: block;
  border-bottom: 1px solid #1f1f1f;
}

.theme-mistral .poster {
  width: min(var(--max, 1120px), calc(100vw - 32px));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.theme-mistral .poster-kicker {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1f1f1f;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* 빌보드 헤드라인: 화면을 가로지르는 단 하나의 활자 */
.theme-mistral .poster-display {
  margin: 0;
  font-size: clamp(46px, 9.5vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.theme-mistral .poster-sub {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

/* 공식 링크 3종: 라운드 0, 헤어라인 프레임의 납작한 버튼 */
.theme-mistral .link-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  border: 1px solid #1f1f1f;
}

.theme-mistral .link-row .poster-link {
  flex: 1 1 200px;
  padding: 16px 20px;
  border-right: 1px solid #1f1f1f;
  background: var(--surface-2);
  color: #1f1f1f;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
}

.theme-mistral .link-row .poster-link:last-child {
  border-right: 0;
}

.theme-mistral .link-row .poster-link:first-child {
  background: #1f1f1f;
  color: #ffffff;
}

.theme-mistral .link-row .poster-link:hover,
.theme-mistral .link-row .poster-link:focus-visible {
  background: var(--accent);
  color: var(--accent-text);
  outline-offset: -3px;
}

.theme-mistral .poster-figure {
  margin: 34px 0 0;
  border: 1px solid #1f1f1f;
}

.theme-mistral .poster-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-mistral .poster-figure figcaption {
  padding: 8px 12px;
  border-top: 1px solid #1f1f1f;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 시그니처: CSS 전용 키워드 티커(단일 줄, JS 없음) */
.theme-mistral .ticker {
  overflow: hidden;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  background: var(--accent);
  color: var(--accent-text);
}

.theme-mistral .ticker-belt {
  display: inline-flex;
  white-space: nowrap;
  animation: theme-mistral-ticker 36s linear infinite;
}

.theme-mistral .ticker-track {
  display: inline-block;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes theme-mistral-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-mistral .ticker-belt {
    animation: none;
  }
}

/* 브리핑 그리드: 모듈을 헤어라인 셀로 나눈 2열 지면 */
.theme-mistral .brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border-bottom: 1px solid #1f1f1f;
}

.theme-mistral .brief-grid .section {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 40px 32px;
  border-right: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  min-width: 0;
}

.theme-mistral .brief-grid .section:nth-child(2n) {
  border-right: 0;
}

.theme-mistral .brief-grid .section:nth-last-child(-n + 2):nth-child(odd),
.theme-mistral .brief-grid .section:last-child {
  border-bottom: 0;
}

.theme-mistral .brief-grid .section-head {
  grid-template-columns: 1fr;
}

.theme-mistral .brief-grid .grid.three {
  grid-template-columns: 1fr;
}

.theme-mistral .brief-grid .card,
.theme-mistral .brief-grid .official-link {
  box-shadow: none;
  border: 1px solid #1f1f1f;
  border-radius: 0;
}

/* 스몰프린트: 점검 카드 + 법적 고지 한 줄 */
.theme-mistral .smallprint {
  width: min(var(--max, 1120px), calc(100vw - 32px));
  margin: 0 auto;
  padding: 44px 0 40px;
}

.theme-mistral .smallprint .section {
  width: 100%;
  padding: 0;
}

.theme-mistral .smallprint .status-card {
  border: 1px solid #1f1f1f;
  border-radius: 0;
  box-shadow: none;
}

.theme-mistral .smallprint-legal {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.theme-mistral .poster-foot {
  padding: 18px 16px;
  text-align: center;
}

.theme-mistral .poster-foot p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

@media (max-width: 760px) {
  .theme-mistral .brief-grid {
    grid-template-columns: 1fr;
  }

  .theme-mistral .brief-grid .section {
    border-right: 0;
    padding: 32px 18px;
  }

  .theme-mistral .brief-grid .section:nth-last-child(-n + 2):nth-child(odd) {
    border-bottom: 1px solid #1f1f1f;
  }

  .theme-mistral .brief-grid .section:last-child {
    border-bottom: 0;
  }

  .theme-mistral .link-row .poster-link {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid #1f1f1f;
  }

  .theme-mistral .link-row .poster-link:last-child {
    border-bottom: 0;
  }
}
