: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));
  }
}

/* NVIDIA design language — true black, engineered green accent, 2px radii. */
.theme-nvidia {
  --bg: #000000;
  --surface: #1a1a1a;
  --surface-2: #111111;
  --text: #ffffff;
  --muted: #a7a7a7;
  --border: #5e5e5e;
  --accent: #76b900;
  --accent-text: #000000;
  --radius: 2px;
  --button-radius: 2px;
  --font-display: Arial, "Helvetica Neue", Helvetica, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-mono: "SFMono-Regular", Menlo, Consolas, "Courier New", monospace;
}

/* Tight, bold, authoritative headings — the NVIDIA voice. */
.theme-nvidia h1,
.theme-nvidia h2,
.theme-nvidia h3 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: normal;
}

/* Uppercase hardware-label eyebrows in signal green. */
.theme-nvidia .eyebrow,
.theme-nvidia .kicker {
  color: #76b900;
  text-transform: uppercase;
  font-weight: 700;
}

/* Cards: near-black surfaces, single utilitarian ambient shadow. */
.theme-nvidia .card,
.theme-nvidia .status-card,
.theme-nvidia .link-card {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
}

/* Primary CTA: teal hover per NVIDIA interactive states. */
.theme-nvidia .button:hover {
  background: #1eaedb;
  border-color: #1eaedb;
  color: #ffffff;
}

/* Nav links: white uppercase spec labels, blue shift on hover. */
.theme-nvidia .nav-links a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}
.theme-nvidia .nav-links a:hover {
  color: #3860be;
}

/* Green accent border marks the active/selected signal. */
.theme-nvidia .trust-box,
.theme-nvidia .memo-box {
  border-left: 2px solid #76b900;
}

/* ---- spec layout: hardware spec-sheet skeleton (header.spec-band > main.spec > footer.spec-grid) ---- */

/* Top band: solid black bar with a green scan-line strip along its lower edge. */
.theme-nvidia .spec-band {
  background: #000000;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.theme-nvidia .spec-band::after {
  content: "";
  display: block;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    var(--accent) 0 14px,
    transparent 14px 20px
  );
}
.theme-nvidia .spec-band-inner {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.theme-nvidia .spec-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.theme-nvidia .spec-model {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 4px 10px;
  white-space: nowrap;
}

/* Main column: h1 then the summary table, spec-sheet order. */
.theme-nvidia main.spec > h1,
.theme-nvidia main.spec > .spec-summary,
.theme-nvidia main.spec > .spec-disclaimer,
.theme-nvidia main.spec > .spec-figure {
  width: min(var(--max), calc(100vw - 32px));
  margin-inline: auto;
}
.theme-nvidia main.spec > h1 {
  margin-block: 48px 20px;
  font-size: clamp(30px, 5vw, 46px);
  text-wrap: balance;
}

/* Summary table: collapsed borders, mono values, zero radius. */
.theme-nvidia .spec-summary {
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  background: var(--surface-2);
}
.theme-nvidia .spec-summary caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  max-width: 760px;
}
.theme-nvidia .spec-caption-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 4px;
}
.theme-nvidia .spec-summary th,
.theme-nvidia .spec-summary td {
  border-top: 1px solid #2a2a2a;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.theme-nvidia .spec-summary th {
  width: 32%;
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--muted);
}
.theme-nvidia .spec-summary td {
  font-family: var(--font-mono);
  color: var(--text);
}
.theme-nvidia .spec-summary td a {
  color: var(--accent);
}
.theme-nvidia .spec-led {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--accent);
}
.theme-nvidia .spec-led.is-warn {
  background: #e0a800;
}
.theme-nvidia .spec-disclaimer {
  margin-block: 14px 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 760px;
}

/* Product figure between summary and numbered sections. */
.theme-nvidia .spec-figure {
  margin-block: 40px 8px;
}
.theme-nvidia .spec-figure img {
  width: 100%;
  border: 1px solid var(--border);
}
.theme-nvidia .spec-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Numbered spec sections via CSS counters (01, 02, …). */
.theme-nvidia .spec-modules {
  counter-reset: spec-section;
}
.theme-nvidia .spec-modules > .section {
  counter-increment: spec-section;
}
.theme-nvidia .spec-modules > .section h2::before {
  content: counter(spec-section, decimal-leading-zero);
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 2px 8px;
  vertical-align: middle;
}

/* Angular multi-column footer: hard rules between columns, no rounding. */
.theme-nvidia .spec-grid {
  margin-top: 72px;
  border-top: 1px solid var(--border);
  background: #000000;
}
.theme-nvidia .spec-grid-inner {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding-block: 36px 44px;
}
.theme-nvidia .spec-foot-summary {
  padding-right: 28px;
}
.theme-nvidia .spec-foot-summary strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.theme-nvidia .spec-foot-summary p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 46ch;
}
.theme-nvidia .spec-foot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-inline: 28px;
  border-left: 1px solid #2a2a2a;
}
.theme-nvidia .spec-foot-links a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.theme-nvidia .spec-foot-links a:hover {
  color: var(--accent);
}
.theme-nvidia .spec-foot-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 28px;
  border-left: 1px solid #2a2a2a;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

@media (max-width: 720px) {
  .theme-nvidia .spec-band-inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }
  .theme-nvidia .spec-summary th {
    width: 40%;
  }
  .theme-nvidia .spec-grid-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .theme-nvidia .spec-foot-links,
  .theme-nvidia .spec-foot-meta {
    border-left: 0;
    padding-inline: 0;
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
  }
}
