:root {
  --bg: #0c0c0f;
  --bg-alt: #14141a;
  --card-bg: #1c1c24;
  --accent: #ff4b26;
  --accent-soft: rgba(255, 75, 38, 0.12);
  --text: #f5f5f7;
  --muted: #a0a3b1;
  --border-subtle: #2a2a35;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.4);
  --max-width: 1120px;
  --transition-fast: 0.18s ease-out;
  --nav-height: 70px;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #181822 0, #050509 50%, #000 100%);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  padding: 24px 16px 40px;
}

.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #fff 0, #ffcfb3 12%, var(--accent) 40%, #190100 100%);
  box-shadow: 0 0 32px rgba(255,75,38,0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--muted);
}

/* Hero / common sections */
.hero {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255,75,38,0.1), transparent 52%),
    linear-gradient(135deg, #10101a, #050509);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.04);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

/* New hero layout helpers for main + side columns */
.hero-main {
  min-width: 260px;
}

.hero-side {
  min-width: 260px;
  max-width: 360px;
}

/* stacked week snapshots inside the hero side */
.snapshot-weeks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.snapshot-week {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 8px;
}

.snapshot-week:first-child {
  border-top: none;
  padding-top: 0;
}

.snapshot-week-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 4px 0;
  color: var(--muted);
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #050505;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 75, 38, 0.5);
}
.btn-primary:hover {
  background: #ff6b47;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(244,244,245,0.03);
  border-color: rgba(244,244,245,0.06);
  color: var(--muted);
}
.btn-ghost:hover {
  background: rgba(244,244,245,0.06);
  color: var(--text);
  transform: translateY(-1px);
}

/* Hero visual placeholder (used on some pages) */
.hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(255, 75, 38, 0.2), #050509);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.hero-pill {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 8px;
  font-size: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
}

.hero-number {
  font-size: 36px;
  font-weight: 700;
}

.hero-caption {
  font-size: 11px;
  color: var(--muted);
}

/* Cards & sections */
.section {
  margin-top: 28px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}

.card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-body {
  font-size: 13px;
  color: var(--muted);
}

.card-metric {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 11px;
  color: #ffd9c9;
}

/* Helpers for embeds */
.page-intro {
  max-width: 640px;
  font-size: 14px;
  color: var(--muted);
}

.data-embed,
.video-embed,
.slides-embed,
.form-embed {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px dashed rgba(255,255,255,0.16);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.02), rgba(0,0,0,0.8));
  padding: 10px;
}

.data-embed iframe,
.video-embed iframe,
.slides-embed iframe {
  width: 100%;
  min-height: 260px;
  border: none;
}

/* Weekly recap cards */
.recap-list {
  display: block;
}

.recap-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}

.recap-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.recap-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.recap-columns {
  display: block;
  gap: 12px;
  margin-top: 10px;
}

.recap-text {
  font-size: 13px;
  color: var(--muted);
}

.recap-keypoints {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.recap-keypoints strong {
  color: var(--text);
}

/* Simple footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px 24px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* Week snapshot tables (index + dashboard usage) */
.week-snapshot {
  margin-top: 12px;
}

.week-snapshot h2 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.snapshot-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  background: var(--card-bg);
  color: var(--text);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  font-size: 13px;
}

.snapshot-table thead th {
  text-align: left;
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(244,244,245,0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.snapshot-table td {
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.snapshot-table tr:last-child td {
  border-bottom: none;
}

.snapshot-table td:first-child {
  color: var(--muted);
}

.snapshot-table td:last-child {
  text-align: right;
  font-weight: 500;
}

/* Zone color mapping */
.snapshot-table .zone-1 td {
  color: #4EC5F1; /* Light blue */
}

.snapshot-table .zone-2 td {
  color: #53D86A; /* Green */
}

.snapshot-table .zone-3 td {
  color: #F8D24A; /* Yellow */
}

.snapshot-table .zone-4 td {
  color: #F28C28; /* Orange */
}

.snapshot-table .zone-5 td {
  color: #E63946; /* Red */
}

/* Chart row utilities (two charts side by side) */
.chart-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.chart-box {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

/* Mobile stacking */
@media (max-width: 800px) {
  .chart-row {
    flex-direction: column;
  }
}

/* Journey Dashboard layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr; /* one card per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Make each card wider */
.dashboard-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure charts never overflow */
.dashboard-card iframe {
  width: 100%;
  height: 450px; /* increase height for readability */
  border: none;
}

/* Optional: For ultra-wide monitors */
@media (min-width: 1600px) {
  .dashboard-grid {
    max-width: 100%;
  }
}

/* Ensure all iframes stretch the container width */
.data-embed iframe,
.dashboard-card iframe {
  width: 100% !important;
  max-width: 100%;
  border: none;
}

/* Wide cards that span full width of a grid */
.card.card--wide {
  max-width: 100%;
  width: 100%;
}

.dashboard-grid .card.card--wide,
.card-grid .card.card--wide {
  grid-column: 1 / -1;
}

.card.card--wide .data-embed iframe {
  width: 100% !important;
  max-width: 100%;
}

/* Training Volume & Frequency section */
.dashboard-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.volume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card.card--metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.card.card--metric .metric-value {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 600;
}

.card.card--metric .metric-sub {
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Mobile: stack all 4 metrics in one column */
@media (max-width: 800px) {
  .volume-grid {
    grid-template-columns: 1fr;
  }
}

/* Intensity & Recovery grid (Journey dashboard) */
.intensity-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(540px, 1fr));
  min-width: 600px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.intensity-grid .card {
  min-width: 520px;
}

/* Mobile falls back to 1-column for readability */
@media (max-width: 800px) {
  .intensity-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .intensity-grid .card {
    min-width: 100%;
  }
}

/* About page layout */
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.profile-photo-frame {
  margin-bottom: 16px;
}

.profile-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  border: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.profile-photo-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.about-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.about-meta > div {
  margin-bottom: 4px;
}

.identity-card {
  margin-top: 12px;
}

/* Week selector (old inline version – still used in some pages) */
.week-selector {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.week-selector label {
  margin-right: 8px;
  color: var(--muted);
}

.week-selector select {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  color: var(--text);
}

/* New sticky week selector (Workouts page – Option 1) */
.week-select-container {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 64px;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.week-select-container label {
  font-size: 0.95rem;
  color: var(--muted);
}

#weekSelect {
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 6px;
  background: #111;
  color: #fff;
  border: 1px solid var(--border-subtle);
}

/* Readiness & workout detail layout */
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.metric-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* When using base64 metric images instead of placeholders */
.metric-image-frame {
  margin-top: 10px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
}

.metric-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Daily workout log layout */
.workout-day {
  margin-bottom: 16px;
}

.workout-day-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.workout-date {
  font-weight: 600;
}

.workout-tag {
  color: var(--muted);
}

.workout-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.workout-details-grid h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.workout-details-grid ul {
  padding-left: 18px;
  margin: 0;
}

/* Week log wrapper used for selector-based toggling */
.week-log {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sessions layout within workout days */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.session {
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
}

.session-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.session-main {
  display: flex;
  flex-direction: column;
}

.session-name {
  font-weight: 600;
}

.session-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.session-zone {
  font-size: 0.85rem;
  color: var(--muted);
}

.session-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
  font-size: 0.85rem;
}

.session-table th,
.session-table td {
  padding: 4px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: left;
}

.session-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.session-table tr:last-child td {
  border-bottom: none;
}

.card-body.muted {
  color: var(--muted);
}

/* HR summary block in sessions */
.session-hr-summary {
  margin-top: 12px;
}

.session-hr-summary h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
}

.session-hr-summary ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Ethos card on About page */
.ethos-card {
  margin-top: 8px;
}

.ethos-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
}

.ethos-list li {
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
}

/* Subtle accent bullet */
.ethos-list li::before {
  content: "●";
  position: absolute;
  left: -14px;
  top: 4px;
  font-size: 0.6rem;
  color: var(--accent, #ff7a45);
}

.ethos-list strong {
  display: block;
  margin-bottom: 2px;
}

/* Hydration table */
.hydration-table td,
.hydration-table th {
  padding: 8px 10px;
  vertical-align: top;
}

.hydration-table th {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  color: var(--muted);
}

.hydration-table tbody tr td:first-child {
  font-weight: 600;
  width: 140px;
}

/* Responsive tweaks */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  main {
    padding-inline: 12px;
  }
  .hero {
    padding: 18px;
  }
}

/* ===== Workout tables: base style ===== */
.workout-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.workout-table th,
.workout-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.workout-table thead th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Wrapper that enables horizontal scroll on small screens */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smoother scrolling on iOS */
}

/* Optional: make the scrollbar a bit nicer (non-breaking if not supported) */
.table-scroll::-webkit-scrollbar {
  height: 6px;
}

.table-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
}

/* ===== Mobile tweaks ===== */
@media (max-width: 768px) {
  .workout-table {
    font-size: 0.8rem; /* slightly smaller text on phones */
  }

  .workout-table th,
  .workout-table td {
    padding: 0.4rem 0.5rem;
    white-space: nowrap; /* keep cells on one line; rely on horizontal scroll */
  }
}


/* Ensure session tables behave nicely inside cards on small screens */
.session-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .session-table th,
  .session-table td {
    white-space: nowrap; /* keep columns on one line, rely on horizontal scroll */
  }
}
/* We already set nowrap for mobile, so make sure scrolling happens inside the card/table-scroll */
@media (max-width: 768px) {
  .card {
    overflow-x: auto; /* let content scroll rather than bleed out */
  }

  .card .table-scroll {
    max-width: 100%;
  }

  .session-table th,
  .session-table td {
    white-space: nowrap; /* rely on horizontal scroll */
  }
}

/* ===== Header & Navigation (mobile-first) ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: radial-gradient(circle at 30% 20%, #ffb386, #ff4b26);
  box-shadow: 0 0 18px rgba(255, 75, 38, 0.6);
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

/* --- MOBILE-FIRST NAV --- */

/* 1) Mobile default: hamburger visible, links hidden in dropdown */
.nav-toggle {
  display: block;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle span + span {
  margin-top: 4px;
}

/* Links are hidden by default on mobile */
.nav-links {
  position: absolute;
  top: 56px;
  right: 16px;
  left: 16px;

  display: none;              /* key: default = hidden */
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;

  padding: 10px 12px 12px;
  background: rgba(5, 5, 10, 0.98);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
}

.nav-links a {
  display: block;
  width: 100%;
  padding: 6px 8px;
  text-decoration: none;
  color: var(--muted);
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.nav-cta:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
}

/* When menu is open (any viewport) */
.nav-links.nav-open {
  display: flex;
}

/* Hamburger animates into an X when open */
.nav-toggle.nav-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.nav-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.nav-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* 2) Desktop override: full horizontal nav, no hamburger */
@media (min-width: 901px) {
  .nav-inner {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: none;                /* hide hamburger on desktop */
  }

  .nav-links {
    position: static;
    display: flex;                /* always visible on desktop */
    flex-direction: row;
    align-items: center;
    gap: 14px;

    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    width: auto;
    padding: 4px 10px;
  }
}