/* ═════════════════════════════════════════════════════════════
   Bet of the Day — LLaMa's daily research logbook.

   Visual language inherits from /letters/ (sage palette, Playfair
   serif headlines, paper-cream body) so the LLaMa voice reads
   continuous across surfaces. Lab-notebook treatment: editorial
   header, methodology section, shortlist table, the pick, the
   case, the ledger.

   Palette:
     paper        #FBF7EF
     paper-warm   #FFFCF3
     ink          #1A1A1A
     ink-70       rgba(26,26,26,0.70)
     ink-40       rgba(26,26,26,0.40)
     sage         rgba(140, 175, 138, 1)
     sage-ink     #4a6b46
     gold         #D4AF37
     gold-ink     #A8791D
   ════════════════════════════════════════════════════════════ */

.page-botd {
  background: #FBF7EF;
  color: #1A1A1A;
  font-family: "Iowan Old Style", "Charter", Georgia, serif;
  line-height: 1.55;
}

.botd { display: block; }
.botd__body { padding: 36px 0 96px; }
.botd__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px);
}

/* ── Hero ──────────────────────────────────────────────────── */
.botd-hero {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(140, 175, 138, 0.18), transparent 60%),
    linear-gradient(180deg, #1d2820 0%, #14201a 100%);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.botd-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .botd-hero__inner {
    grid-template-columns: 1.4fr 1fr;
  }
}
.botd-hero__copy { max-width: 56ch; }
.botd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(190, 215, 185, 1);
  margin-bottom: 18px;
}
.botd-hero__eyebrow-mark { color: rgba(190, 215, 185, 0.85); font-size: 14px; }
.botd-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
}
.botd-hero__date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}
.botd-hero__date-day {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "DM Sans", system-ui, sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  color: rgba(190, 215, 185, 1);
}
.botd-hero__lede {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
}
.botd-hero__lede strong { color: rgba(190, 215, 185, 1); font-style: normal; font-weight: 700; }
.botd-hero__archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(190, 215, 185, 1);
  text-decoration: none;
  border-bottom: 1px solid rgba(190, 215, 185, 0.4);
  padding-bottom: 3px;
  transition: gap 0.18s ease, color 0.18s ease;
}
.botd-hero__archive-link:hover {
  gap: 12px;
  color: rgba(220, 240, 215, 1);
  text-decoration: none;
}
.botd-hero__portrait {
  margin: 0;
  display: flex;
  justify-content: center;
}
.botd-hero__portrait img {
  width: clamp(180px, 32vw, 320px);
  height: auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.45));
}

/* Archive page hero variant — slimmer, no portrait */
.botd-hero--archive .botd-hero__inner { grid-template-columns: 1fr; }
.botd-hero--archive { padding: 44px 0 48px; }

/* ── The Pick card ─────────────────────────────────────────── */
.botd-pick {
  background: #FFFCF3;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 4px;
  padding: 28px clamp(20px, 3vw, 36px) 24px;
  margin-bottom: 36px;
  position: relative;
}
.botd-pick::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(140, 175, 138, 0.7), transparent);
}
.botd-pick--gold::before    { background: linear-gradient(90deg, transparent, #D4AF37, transparent); }
.botd-pick--emerald::before { background: linear-gradient(90deg, transparent, #2DBD7A, transparent); }
.botd-pick--slate::before   { background: linear-gradient(90deg, transparent, #94a3b8, transparent); }

.botd-pick__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.botd-pick__eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}
.botd-pick__conviction {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 11px;
  border-radius: 4px;
}
.botd-pick__conviction--gold {
  background: rgba(212, 175, 55, 0.14);
  color: #A8791D;
  border: 1px solid rgba(212, 175, 55, 0.40);
}
.botd-pick__conviction--emerald {
  background: rgba(45, 189, 122, 0.14);
  color: #166534;
  border: 1px solid rgba(45, 189, 122, 0.40);
}
.botd-pick__conviction--slate {
  background: rgba(71, 85, 105, 0.10);
  color: #475569;
  border: 1px solid rgba(71, 85, 105, 0.30);
}

.botd-pick__body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px 22px;
  align-items: center;
}
@media (max-width: 599px) {
  .botd-pick__body {
    grid-template-columns: auto 1fr;
  }
  .botd-pick__odds-wrap { grid-column: 1 / -1; }
}
.botd-pick__silk-wrap { display: flex; align-items: center; }
.botd-pick__silk-wrap .racecard__silk { width: 56px; height: 64px; }

.botd-pick__id { min-width: 0; }
.botd-pick__horse {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 6px;
}
.botd-pick__horse a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.botd-pick__horse a:hover {
  color: #4a6b46;
  border-bottom-color: rgba(140, 175, 138, 0.6);
  text-decoration: none;
}
.botd-pick__where {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.62);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}
.botd-pick__course { font-weight: 700; color: rgba(26, 26, 26, 0.78); }
.botd-pick__time   { font-variant-numeric: tabular-nums; }
.botd-pick__race-name { font-style: italic; }
.botd-pick__sep    { color: rgba(26, 26, 26, 0.32); }

.botd-pick__odds-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-left: 22px;
  border-left: 1px solid rgba(26, 26, 26, 0.10);
}
@media (max-width: 599px) {
  .botd-pick__odds-wrap {
    align-items: flex-start;
    padding-left: 0;
    padding-top: 14px;
    border-left: none;
    border-top: 1px dashed rgba(26, 26, 26, 0.12);
    width: 100%;
  }
}
.botd-pick__odds-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.50);
}
.botd-pick__odds {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: #A8791D;
  line-height: 1;
  letter-spacing: -0.02em;
}
.botd-pick__odds-decimal {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.50);
  font-variant-numeric: tabular-nums;
}

/* Result ribbon (post-settlement) */
.botd-pick__result {
  margin: 22px -clamp(20px, 3vw, 36px) -24px;
  padding: 14px clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.botd-pick__result--won {
  background: rgba(45, 189, 122, 0.10);
  border-top: 1px solid rgba(45, 189, 122, 0.30);
  color: #166534;
}
.botd-pick__result--lost {
  background: rgba(192, 57, 43, 0.06);
  border-top: 1px solid rgba(192, 57, 43, 0.22);
  color: #B91C1C;
}
.botd-pick__result--void,
.botd-pick__result--abandoned {
  background: rgba(26, 26, 26, 0.04);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  color: rgba(26, 26, 26, 0.62);
}
.botd-pick__result-mark { font-size: 18px; line-height: 1; }
.botd-pick__result-text { flex: 1; }
.botd-pick__result-pnl {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.botd-pick__result-pnl.is-positive { color: #166534; }
.botd-pick__result-pnl.is-negative { color: #B91C1C; }

/* ── Narrative essay — editorial treatment ─────────────────
   The lab-notebook entry reads as a long-form newspaper feature:
   a centred display headline above a hairline rule, an italic
   Playfair lede that opens the case, section labels with a sage
   dingbat, and gold-underlined inline links for every linked
   horse mention. Body type is bumped to 17.5/1.72 — newspaper
   feature column rhythm.
*/
.botd-narrative {
  background: #FFFCF3;
  border: 1px solid rgba(26, 26, 26, 0.10);
  border-radius: 4px;
  padding: 36px clamp(24px, 4vw, 56px) 40px;
  margin-bottom: 36px;
}
.botd-narrative__headline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  padding-bottom: 22px;
  color: #1A1A1A;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}
.botd-narrative__headline::after {
  content: '\10086';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFCF3;
  padding: 0 12px;
  font-size: 14px;
  color: #d4af37;
  line-height: 1;
}

.botd-narrative__body {
  font-family: "Iowan Old Style", "Charter", "Source Serif Pro", Georgia, serif;
  font-size: 17.5px;
  line-height: 1.72;
  color: rgba(26, 26, 26, 0.85);
  hyphens: auto;
}

/* Section labels — sage rule + dingbat */
.botd-narrative__body h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4a6b46;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(140, 175, 138, 0.32);
}
.botd-narrative__body h3::before {
  content: '\10086';
  color: rgba(212, 175, 55, 0.85);
  font-size: 14px;
  line-height: 1;
}
.botd-narrative__body h3:first-child { margin-top: 0; }

/* Paragraphs */
.botd-narrative__body p {
  margin: 0 0 20px;
}
.botd-narrative__body p:last-child { margin-bottom: 0; }

/* Lede — the first paragraph after the Method label sets the
   editorial frame. Larger, Playfair italic, sage-leaning ink. */
.botd-narrative__body > h3:first-of-type + p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.78);
  margin-bottom: 26px;
  letter-spacing: -0.005em;
}

/* Inline emphasis — bold reads as ink-strong with a tiny touch
   of letter-spacing tightening (newspaper feel). */
.botd-narrative__body strong {
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.005em;
}
.botd-narrative__body em {
  font-style: italic;
  color: rgba(26, 26, 26, 0.72);
}

/* Inline links — gold-ink underline, sage hover. Editorial,
   not blue-and-underlined web. */
.botd-narrative__body a {
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 700;
  background-image: linear-gradient(transparent 0%, transparent calc(100% - 3px),
                                    rgba(212, 175, 55, 0.55) calc(100% - 3px),
                                    rgba(212, 175, 55, 0.55) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 1px;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.botd-narrative__body a:hover {
  color: #4a6b46;
  background-color: rgba(140, 175, 138, 0.12);
  background-image: linear-gradient(transparent 0%, transparent calc(100% - 3px),
                                    rgba(140, 175, 138, 0.65) calc(100% - 3px),
                                    rgba(140, 175, 138, 0.65) 100%);
  text-decoration: none;
}

.botd-narrative__fallback-note {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px dashed rgba(26, 26, 26, 0.18);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(26, 26, 26, 0.55);
}

/* ── Pending empty state ───────────────────────────────────── */
.botd-pending {
  background: #FFFCF3;
  border: 1px dashed rgba(140, 175, 138, 0.45);
  border-radius: 4px;
  padding: 56px clamp(20px, 3vw, 40px);
  text-align: center;
}
.botd-pending__mark {
  font-size: 28px;
  color: rgba(140, 175, 138, 0.85);
  display: block;
  margin-bottom: 16px;
}
.botd-pending__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
}
.botd-pending__lede {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.62);
  max-width: 48ch;
  margin: 0 auto 22px;
}
.botd-pending__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a6b46;
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 175, 138, 0.4);
  padding-bottom: 3px;
  transition: gap 0.18s ease;
}
.botd-pending__cta:hover { gap: 12px; text-decoration: none; }

/* ── Archive list ──────────────────────────────────────────── */
.botd-archive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.10);
}
.botd-archive__item { border-bottom: 1px solid rgba(26, 26, 26, 0.08); }
.botd-archive__link {
  display: grid;
  grid-template-columns: 80px 1fr 80px 80px 90px;
  align-items: center;
  gap: 18px;
  padding: 16px 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.botd-archive__link:hover {
  background: rgba(212, 175, 55, 0.06);
  text-decoration: none;
}
@media (max-width: 699px) {
  .botd-archive__link {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .botd-archive__odds, .botd-archive__chip { display: none; }
}
.botd-archive__date {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", Georgia, serif;
}
.botd-archive__date strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.botd-archive__date span {
  font-style: italic;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
}
.botd-archive__pick { display: flex; flex-direction: column; min-width: 0; }
.botd-archive__horse {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.botd-archive__where {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
}
.botd-archive__odds {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #A8791D;
}
.botd-archive__chip {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 4px 9px;
  border-radius: 4px;
}
.botd-archive__chip--won  { background: rgba(45, 189, 122, 0.14); color: #166534; }
.botd-archive__chip--lost { background: rgba(192, 57, 43, 0.10);  color: #B91C1C; }
.botd-archive__chip--void,
.botd-archive__chip--abandoned { background: rgba(26, 26, 26, 0.06); color: rgba(26, 26, 26, 0.55); }
.botd-archive__chip--live { background: rgba(212, 175, 55, 0.14); color: #A8791D; }
.botd-archive__pnl {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: rgba(26, 26, 26, 0.55);
}
.botd-archive__pnl.is-positive { color: #166534; }
.botd-archive__pnl.is-negative { color: #B91C1C; }

/* Pager */
.botd-archive__pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 26, 26, 0.10);
}
.botd-archive__pager-btn {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4a6b46;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(140, 175, 138, 0.4);
  border-radius: 4px;
  transition: background 0.15s ease;
}
.botd-archive__pager-btn:hover {
  background: rgba(140, 175, 138, 0.10);
  text-decoration: none;
}
.botd-archive__pager-indicator {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
}

/* Empty state for archive */
.botd-empty {
  padding: 64px 20px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: rgba(26, 26, 26, 0.55);
}

/* ── Ledger summary ────────────────────────────────────────
   The Honest Record — running stats published on every page.
   Pure newspaper-stat-block treatment: paper backdrop, big
   tabular figures, ink labels. Sage rule + dingbat header
   matches the In This Issue / Live from the Turf stack so the
   visual rhythm reads consistent across LLaMa surfaces.
*/
.botd-ledger {
  margin: 48px 0 0;
  padding: 24px clamp(20px, 3vw, 36px) 28px;
  background: #FFFCF3;
  border-top:    3px double #1A1A1A;
  border-bottom: 3px double #1A1A1A;
}
.botd-ledger__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.botd-ledger__dingbat {
  font-size: 16px;
  line-height: 1;
  color: #D4AF37;
}
.botd-ledger__title {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1A1A1A;
  white-space: nowrap;
}
.botd-ledger__grid {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px clamp(12px, 2vw, 28px);
  text-align: center;
}
@media (max-width: 599px) {
  .botd-ledger__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.botd-ledger__cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 6px;
  border-left: 1px solid rgba(26, 26, 26, 0.10);
}
.botd-ledger__cell:first-child { border-left: none; }
@media (max-width: 599px) {
  .botd-ledger__cell:nth-child(odd) { border-left: none; }
}
.botd-ledger__num {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #1A1A1A;
}
.botd-ledger__num.is-positive { color: #166534; }
.botd-ledger__num.is-negative { color: #B91C1C; }
.botd-ledger__num-sub {
  font-size: 0.6em;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.45);
  margin-left: 2px;
}
.botd-ledger__label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}
.botd-ledger__meta {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(26, 26, 26, 0.16);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.65);
  text-align: center;
}
.botd-ledger__streak strong       { font-style: normal; font-weight: 800; }
.botd-ledger__streak--won  strong { color: #166534; }
.botd-ledger__streak--lost strong { color: #B91C1C; }
.botd-ledger__voids {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.45);
}
.botd-ledger__empty {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: rgba(26, 26, 26, 0.55);
  margin: 0;
}
