/* =========================
   Base / Tokens
========================= */
:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #0f172a;        /* slate-900 */
  --muted: #475569;       /* slate-600 */
  --muted-2: #64748b;     /* slate-500 */
  --border: #e2e8f0;      /* slate-200 */
  --shadow: 0 10px 30px rgba(2,6,23,.08);

  --brand: #0b1220;       /* deep navy */
  --brand-2: #111827;     /* gray-900 */
  --accent: #2563eb;      /* blue-600 (links/primary) */
  --accent-2: #1d4ed8;    /* blue-700 */

  --radius: 16px;
  --radius-lg: 22px;

  --container: 1120px;
  --pad: 24px;
  --pad-lg: 56px;
  --pad-xl: 72px;

  --h1: clamp(28px, 4vw, 44px);
  --h2: clamp(20px, 2.6vw, 30px);
  --h3: 18px;
  --lead: 18px;
  --body: 16px;

  --lh: 1.65;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font: 400 var(--body)/var(--lh) system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
p{ margin: 0 0 14px; }

::selection{ background: rgba(37,99,235,.18); }

/* =========================
   Layout Helpers
========================= */
.main{ display:block; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section{
  padding: var(--pad-xl) 0;
}
.section + .section{
  border-top: 1px solid var(--border);
}

/* Titles */
h1,h2,h3{
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1{ font-size: var(--h1); }
h2{ font-size: var(--h2); }
h3{ font-size: var(--h3); }
.lead{
  font-size: var(--lead);
  color: var(--muted);
  max-width: 60ch;
}

/* Eyebrow */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--muted-2);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 14px;
}
.eyebrow::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

/* Notes */
.note{
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 18px;
}
.note strong{ color: var(--text); font-weight: 700; }

/* =========================
   Buttons / Links
========================= */
.cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(2,6,23,.14);
}
.btn-primary:hover{
  background: #060b14;
  box-shadow: 0 14px 26px rgba(2,6,23,.18);
}
.btn-secondary{
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover{
  border-color: #cbd5e1;
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}

.text-link{
  color: var(--accent);
  font-weight: 700;
}
.text-link:hover{ color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

/* Focus */
:focus-visible{
  outline: 3px solid rgba(37,99,235,.35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* =========================
   Hero
========================= */
.hero{
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(900px 420px at 15% 5%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 15%, rgba(15,23,42,.08), transparent 55%),
    linear-gradient(180deg, var(--surface-2), #fff 55%);
}
.hero .container{
  padding-top: var(--pad-lg);
  padding-bottom: var(--pad-lg);
}
.hero h1{
  max-width: 22ch;
}
.hero .lead{
  margin-top: 10px;
}

/* Highlights */
.highlights{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.highlights li{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
  box-shadow: 0 10px 25px rgba(2,6,23,.04);
}
.highlights strong{
  display:block;
  font-weight: 800;
  margin-bottom: 6px;
}
.highlights span{
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Vehicle Showcase
========================= */
.vehicle{
  background: #fff;
}
.card-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 12px 24px rgba(2,6,23,.05);
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(2,6,23,.08);
  border-color: #cbd5e1;
}
.card p{
  color: var(--muted);
  margin: 0;
}
.mini-cta{
  margin-top: 18px;
}

/* =========================
   How it Works
========================= */
.how{
  background: var(--surface-2);
}
.steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}
.steps > li{
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 26px rgba(2,6,23,.05);
}
.steps > li::before{
  counter-increment: step;
  content: counter(step);
  position:absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(37,99,235,.12);
  color: var(--accent-2);
  font-weight: 900;
}
.steps p{ color: var(--muted); margin: 0; }

.split{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.panel{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.panel p{ color: var(--muted); }

/* =========================
   Status
========================= */
.status{
  background: #fff;
}
.status-board{
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}
.status-meta{
  display:flex;
  align-items:center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.status-item { background: #f8fafc; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0; }
.status-item h3 { margin-top: 0; font-size: 1.1rem; color: #1e293b; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; margin-bottom: 15px; }
.taxi-count-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.taxi-count-list li {
  display: flex;             /* 가로 배치 */
  justify-content: space-between; /* 양쪽 끝 정렬 (핵심!) */
  align-items: center;       /* 세로 중앙 정렬 */
  padding: 8px 0;            /* 위아래 여백 */
  border-bottom: 1px dashed #e2e8f0; /* 가독성을 위한 점선 (선택사항) */
  font-size: 0.95rem;
}

.taxi-count-list li:last-child {
  border-bottom: none;       /* 마지막 줄은 선 없애기 */
}
.taxi-count-list { font-weight: 800; color: #2563eb; font-size: 1.1rem; }
.count {
  font-size: 1.1rem;         /* 숫자만 조금 더 크게 */
  font-weight: 800;
  color: #2563eb;            /* 숫자 강조색 (파랑) */
  margin-right: 2px;         /* 숫자와 '대' 사이 살짝 띄우기 */
}
.label {
  color: #64748b;            /* 라벨 색상 (회색톤) */
  font-weight: 500;
}

.stat-value {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #1e293b;            /* "대" 글자 색상 */
}
@media (max-width: 600px) { .status-grid { grid-template-columns: 1fr; } }

/* =========================
   Pricing teaser (mini)
========================= */
.pricing{
  background: var(--surface-2);
}
.micro-links{
  margin-top: 12px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   Trust
========================= */
.trust{
  background: #fff;
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.trust-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(2,6,23,.05);
}
.trust-card p{ color: var(--muted); margin: 0; }

/* =========================
   Guides
========================= */
.guides{
  background: var(--surface-2);
}
.list-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.list-item{
  display:block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.04);
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.list-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(2,6,23,.07);
  border-color: #cbd5e1;
}
.list-item strong{
  display:block;
  font-weight: 900;
  margin-bottom: 6px;
}
.list-item span{
  display:block;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   FAQ
========================= */
.faq{
  background: #fff;
}
.faq-list{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.faq-list details{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 10px 20px rgba(2,6,23,.04);
}
.faq-list summary{
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  outline: none;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list details[open]{
  border-color: rgba(37,99,235,.25);
}
.faq-list details > div{
  padding-top: 10px;
}
.faq-list details p{
  margin: 0;
  color: var(--muted);
}

/* =========================
   Final CTA
========================= */
.final{
  background:
    radial-gradient(800px 340px at 20% 10%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(800px 340px at 90% 30%, rgba(2,6,23,.10), transparent 55%),
    linear-gradient(180deg, #fff, var(--surface-2));
}
.final .cta-row{ margin-bottom: 0; }

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .highlights{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .status-grid{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr; }
  .list-grid{ grid-template-columns: 1fr; }
  .section{ padding: 56px 0; }
}

/* =========================
   Reduced Motion
========================= */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}


.hdr{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

/* Utility bar (desktop only) */
.hdr-util{
  display: none;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.hdr-util__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.hdr-util__left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.hdr-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hdr-util__text{
  color: var(--muted-2);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hdr-util__right{ display:flex; gap: 10px; }
.hdr-util__link{
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
.hdr-util__link:hover{ background: rgba(2,6,23,.04); color: var(--text); }

/* Main bar */
.hdr-main{ background: var(--surface); }
.hdr-main__inner{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Brand */
.hdr-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
}
.hdr-brand__mark{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.04);
}
.hdr-brand__name{
  letter-spacing: -0.02em;
}

/* Desktop nav */
.hdr-nav{ display:none; align-items:center; gap: 6px; }
.hdr-nav__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: background .16s ease, color .16s ease;
}
.hdr-nav__link:hover{
  background: rgba(2,6,23,.04);
  color: var(--text);
}
.hdr-nav__link--strong{ color: var(--text); }

/* LIVE pill */
.hdr-live{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  color: var(--text);
}
.hdr-live__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
}

/* Desktop actions (reuse .btn) */
.hdr-actions{ display:none; align-items:center; gap: 10px; }

/* Mobile toggle */
.hdr-toggle{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hdr-toggle:hover{ background: rgba(2,6,23,.04); }
.hdr-toggle__icon{
  width: 18px;
  height: 12px;
  position: relative;
  display:block;
}
.hdr-toggle__icon::before,
.hdr-toggle__icon::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background: var(--text);
  border-radius: 999px;
}
.hdr-toggle__icon::before{ top:0; }
.hdr-toggle__icon::after{ bottom:0; }
.hdr-toggle__icon{
  background: linear-gradient(var(--text), var(--text)) center/100% 2px no-repeat;
}

/* Drawer */
.hdr-drawer{
  position: fixed;
  inset: 0;
  z-index: 100;
}
.hdr-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.42);
}
.hdr-drawer__panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width: min(360px, 92vw);
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.hdr-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
}
.hdr-drawer__title{ font-weight: 900; }
.hdr-drawer__close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.hdr-drawer__close:hover{ background: rgba(2,6,23,.04); }

.hdr-drawer__nav{
  padding: 12px 14px 18px;
  overflow:auto;
}
.hdr-drawer__link{
  display:block;
  padding: 12px 12px;
  border-radius: 16px;
  font-weight: 900;
  color: var(--text);
  border: 1px solid transparent;
}
.hdr-drawer__link:hover{ background: rgba(2,6,23,.04); }
.hdr-drawer__link--primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(2,6,23,.12);
}
.hdr-drawer__link--primary:hover{ filter: brightness(.95); }

.hdr-drawer__sub{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
}
.hdr-drawer__link--primary .hdr-drawer__sub{
  color: rgba(255,255,255,.85);
}

.hdr-drawer__sep{
  border: none;
  border-top: 1px solid var(--border);
  margin: 10px 0;
}
.hdr-drawer__foot{
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-2);
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Mobile bottom CTA */
.hdr-bottom{
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 60;
  display:flex;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.hdr-bottom__btn{
  flex: 1;
  height: 48px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  border: 1px solid var(--border);
}
.hdr-bottom__btn--ghost{
  background:#fff;
  color: var(--text);
}
.hdr-bottom__btn--ghost:hover{ background: rgba(2,6,23,.04); }
.hdr-bottom__btn--primary{
  background: var(--brand);
  color:#fff;
  border-color: var(--brand);
  box-shadow: 0 10px 20px rgba(2,6,23,.14);
}
.hdr-bottom__btn--primary:hover{ filter: brightness(.95); }

/* Optional: body padding to avoid bottom CTA overlap (apply class to body) */
@media (max-width: 980px){
  body.hdr-bottom-on{ padding-bottom: 78px; }
}

/* Desktop breakpoint */
@media (min-width: 980px){
  .hdr-util{ display:block; }
  .hdr-nav{ display:flex; }
  .hdr-actions{ display:flex; }
  .hdr-toggle{ display:none; }
  .hdr-bottom{ display:none; }
  .hdr-main__inner{ height: 72px; }
}

/* Prevent body scroll when drawer open */
body.hdr-drawer-open{ overflow:hidden; }

html.is-article body{
  background: var(--surface-2);
}

html.is-article body main{
  max-width: 780px;
  margin: 18px auto 96px;
  padding: 28px var(--pad);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
}



/* =========================
   Content page (posts) styles
   scope: body.page-content only
========================= */
body.is-article body{
  background: var(--surface-2);
}

/* main을 읽기 좋은 폭 + 카드로 만들기 */
body.is-article body main{
  max-width: 780px;
  margin: 18px auto 96px;
  padding: 28px var(--pad);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
}

/* 기본 타이포 */
body.is-article body main{
  color: var(--text);
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

/* 제목/단락 */
body.is-article body main h1{
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
body.is-article body main h2{
  font-size: clamp(18px, 2.6vw, 24px);
  margin: 30px 0 12px;
  line-height: 1.3;
}
body.is-article body main h3{
  font-size: 18px;
  margin: 22px 0 10px;
  line-height: 1.35;
}
body.is-article body main p{
  margin: 0 0 14px;
  color: var(--text);
}
body.is-article body main p + p{
  margin-top: 10px;
}

/* 링크 */
body.is-article body main a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.is-article body main a:hover{
  color: var(--accent-2);
}

/* 리스트 */
body.is-article body main ul,
body.is-article body main ol{
  margin: 10px 0 16px;
  padding-left: 1.2em;
}
body.is-article body main li{
  margin: 6px 0;
}
body.is-article body main li > p{
  margin: 6px 0;
}

/* 구분선 */
body.is-article body main hr{
  border: 0;
  border-top: 1px solid var(--border);
  margin: 22px 0;
}

/* 인용문 */
body.is-article body main blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(37,99,235,.35);
  background: rgba(37,99,235,.06);
  border-radius: 12px;
  color: var(--muted);
}

/* 이미지 */
body.is-article body main img{
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  margin: 14px 0;
}

/* 표 */
body.is-article body main table{
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
body.is-article body main th,
body.is-article body main td{
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
body.is-article body main th{
  background: var(--surface-2);
  font-weight: 900;
}

/* 코드 */
body.is-article body main code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(2,6,23,.06);
  border: 1px solid rgba(2,6,23,.08);
}
body.is-article body main pre{
  overflow: auto;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(2,6,23,.06);
  border: 1px solid rgba(2,6,23,.08);
}
body.is-article body main pre code{
  background: transparent;
  border: 0;
  padding: 0;
}

/* Quill 잔여물(커서) 제거 */
body.is-article body main .ql-cursor{
  display: none !important;
}

/* 모바일: 카드 여백 최적화 */
@media (max-width: 600px){
  body.is-article body main{
    margin: 12px auto 88px;
    padding: 18px 16px;
    border-radius: 16px;
  }
}
