/* ==========================================================================
   Carafe & Gilt — recipe-page layout
   Structural styles for a single recipe page: header, hero, ingredients,
   method, story, and the grocery drawer. Loaded after tokens.css.
   Extracted from design/lemon-drop-recipe.mockup.html (the visual target).
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-2) var(--sp-4); max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; text-decoration: none; }
.brand .name { font-family: var(--font-display); font-size: 1.3rem; color: var(--display-ink); white-space: nowrap; }
.nav { display: flex; gap: var(--sp-3); }
.nav a { text-decoration: none; font-size: var(--fs-sm); color: var(--text-muted); }
.nav a:hover { color: var(--gold); }
/* Icon buttons: the sun/moon theme toggle and (mobile-only) hamburger. */
.toggle, .menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0; color: var(--text); background: transparent;
  border: 1px solid var(--border-strong); border-radius: 8px; cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.toggle:hover, .menu-btn:hover { border-color: var(--gold); color: var(--gold); }
.toggle svg { width: 18px; height: 18px; }
.menu-btn { display: none; }          /* revealed at the mobile breakpoint below */
.menu-btn svg { width: 20px; height: 20px; }
.nav a[aria-current="page"] { color: var(--gold); }

/* Page navigation — explicit Back + Home. The brand logo also links home, but a
   labelled control is more discoverable (DECISIONS: provide the obvious one too). */
.pagenav { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; padding: var(--sp-4) 0 0; }
.pagenav__link {
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: var(--fs-xs); color: var(--text-muted); text-decoration: none;
  border: 1px solid var(--border); border-radius: 999px; padding: 0.4em 0.95em;
  transition: color .15s, border-color .15s;
}
.pagenav__link:hover { color: var(--gold); border-color: var(--gold); }

.breadcrumb { font-size: var(--fs-sm); color: var(--text-muted); padding: var(--sp-3) 0 0; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* Jump anchors — mobile muscle memory (DECISIONS: provide both) */
.jumps { display: flex; flex-wrap: wrap; gap: var(--sp-3); padding: var(--sp-3) 0 0; }
.jumps a {
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: var(--fs-xs); color: var(--text-muted); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.jumps a:hover { color: var(--gold); border-color: var(--gold); }

.hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-5);
  align-items: center; padding: var(--sp-4) 0 var(--sp-6); scroll-margin-top: 80px;
}
/* Small "Posted July 14, 2026" dateline at the top of the hero text column. */
.posted-date {
  margin: 0 0 0.9rem; font-family: var(--font-caption);
  font-size: var(--fs-xs); letter-spacing: 0.08em; color: var(--text-muted);
}
.posted-date .posted-label {
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold);
}

.meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); }
.meta .stat .k {
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: var(--fs-xs); color: var(--text-muted);
}
.meta .stat .v { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); }

.photo {
  aspect-ratio: 4 / 5; border: 1px solid var(--border-strong);
  background: repeating-linear-gradient(135deg, var(--surface), var(--surface) 13px, var(--surface-2) 13px, var(--surface-2) 26px);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo span {
  font-family: ui-monospace, monospace; font-size: var(--fs-xs); letter-spacing: 0.18em;
  color: var(--text-muted); background: var(--bg); padding: 0.5em 0.9em; border: 1px solid var(--border);
}

/* Extra Gilt: content-led hero (no photo column), single column, gold pill. */
.hero--solo { display: block; max-width: 62ch; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5em; margin-bottom: 1rem;
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: var(--fs-xs); color: var(--on-gold); background: var(--gold);
  padding: 0.4em 0.9em; border-radius: 999px;
}

/* Saved state for "Save to my shelf": the solid-gold CTA becomes a gold outline
   with a check, so the toggle reads as done without shouting. */
.cg-btn--primary.is-saved {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.cg-btn--primary.is-saved:hover { filter: none; background: color-mix(in srgb, var(--gold) 12%, transparent); }

/* Dietary badge — outlined chip under the hero summary (e.g. "Gluten-free",
   "Gluten-free option"). Outlined, not the solid-gold category pill. */
.diet { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.diet-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: var(--fs-xs); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.4em 0.9em;
}
.diet-badge svg { width: 14px; height: 14px; color: var(--gold); }
/* GF note reuses the .tip surface; sits directly under the ingredients card. */
.diet-note { margin-top: var(--sp-4); }

/* Cross-link box (parent ↔ Extra Gilt component), at the foot of the method. */
.parent-link {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  margin-top: var(--sp-4); padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-strong); text-decoration: none; transition: border-color var(--transition);
}
.parent-link:hover { border-color: var(--gold); }
.parent-link .l {
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: var(--fs-xs); color: var(--gold);
}
.parent-link .t { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); }
.parent-link .arrow { color: var(--gold); font-size: 1.2rem; }

/* Attribution under an inlined component's method heading (e.g. the shared
   graham cracker crust): quiet, italic, links to the component's own page. */
.method-source {
  margin: calc(-1 * var(--sp-2)) 0 var(--sp-3); font-style: italic;
  font-size: var(--fs-sm); color: var(--text-muted);
}
.method-source a { color: var(--gold); text-decoration: none; }
.method-source a:hover { text-decoration: underline; }

/* Attribution for a pull-quote that isn't the author's voice (a guest quote):
   a quiet, non-italic cite under the quote so it reads as someone else's words. */
.cg-quote-by {
  display: block; margin-top: var(--sp-3); font-style: normal;
  font-family: var(--font-caption); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: var(--fs-xs); color: var(--text-muted);
}

/* Print-only header — hidden on screen, revealed in the print stylesheet. */
.print-head { display: none; }

.body {
  display: grid; grid-template-columns: 0.9fr 1.5fr; gap: var(--sp-6);
  padding: var(--sp-6) 0; border-top: 1px solid var(--border); scroll-margin-top: 80px;
}

.serving { display: flex; align-items: center; justify-content: space-between; }
.stepper { display: flex; align-items: center; border: 1px solid var(--border-strong); }
.stepper button {
  width: 42px; height: 42px; background: transparent; border: none; color: var(--text);
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.stepper button:hover { background: var(--gold); color: var(--on-gold); }
.stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.stepper button:disabled:hover { background: transparent; color: var(--text); }
.stepper .count {
  min-width: 58px; text-align: center; font-family: var(--font-display); font-size: 1.4rem;
  line-height: 42px; border-left: 1px solid var(--border-strong); border-right: 1px solid var(--border-strong);
}

/* Fixed-serving recipes (no scaler) — a static value where the stepper sits. */
.serves-fixed { font-family: var(--font-display); font-size: 1.4rem; line-height: 42px; color: var(--text); }

/* Labeled ingredient groups (e.g. Crust / Filling) inside the ingredients card. */
.ing-group + .ing-group { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--rule); }
.ing-group-label { margin: 0; }
.ing-group .ing-list { margin-top: var(--sp-2); }

.ing-list { list-style: none; margin: var(--sp-3) 0 0; padding: 0; }
.ing-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-2);
  padding: 0.8em 0; border-bottom: 1px dashed var(--border);
}
.ing-list .name { color: var(--text); }
.ing-list .amt {
  font-family: ui-monospace, monospace; font-size: var(--fs-sm); color: var(--text-muted);
  white-space: nowrap; text-align: right;
}
.garnish { margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid var(--rule); }
.garnish .row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }

.equipment { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--rule); }
.equipment ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 0.6rem; }
.equipment li {
  font-size: var(--fs-sm); color: var(--text-muted);
  border: 1px solid var(--border); padding: 0.3em 0.7em; border-radius: 2px;
}

.steps { list-style: none; counter-reset: step; margin: var(--sp-2) 0 0; padding: 0; }
.steps li {
  counter-increment: step; display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3);
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--border);
}
.steps li::before {
  content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 700;
  font-size: 1.9rem; line-height: 1; color: var(--mark-ink);
}
.steps li p { margin: 0; font-size: var(--fs-lg); }

/* Tasty Variations — flavor-swap cards at the end of the method column
   (DECISIONS: site-wide component; --fs-base isn't in tokens.css, so 1rem). */
.variations { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--border); }
.variations .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--sp-3); margin-top: var(--sp-3); }
.variations .vcard { background: var(--surface); border: 1px solid var(--border-strong); padding: var(--sp-4); }
.variations .vcard h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--display-ink); margin: 0 0 0.4rem; }
.variations .vcard p { margin: 0; font-size: 1rem; color: var(--text-muted); line-height: 1.55; }

/* Variation note — a single styled callout near the method (not the swap cards).
   Mirrors the gold-rule treatment of .cg-quote, but quieter/body-weight. */
.variation-note {
  margin-top: var(--sp-5); padding: var(--sp-3) 0 var(--sp-3) var(--sp-4);
  border-left: 2px solid var(--gold);
}
.variation-note .cg-label { margin-bottom: var(--sp-1); }
.variation-note p {
  margin: 0; font-family: var(--font-display); font-size: 1rem;
  line-height: 1.6; color: var(--text-muted);
}

/* Tip — a small technique/serving aside in the method column (e.g. "chill the
   glass first"). Filled surface + gold left edge, distinct from the borderless
   variation-note; body-weight so it stays quieter than the pull-quote. */
.tip {
  margin-top: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: var(--sp-4);
}
.tip .cg-label { margin-bottom: var(--sp-1); }
.tip p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--text-muted); }

/* Make a Batch — framed companion callout in the method column: mix ahead
   (fixed quantities), then a per-drink serving ritual. Gilt-edged panel so it
   reads as a distinct "and if you're pouring for a crowd…" aside. */
.batch {
  margin-top: 1.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--gold);
  padding: var(--sp-4) var(--sp-4) var(--sp-4);
}
.batch-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.75rem; }
.batch-head .cg-kicker { flex-basis: 100%; margin-bottom: var(--sp-1); }
.batch-head h2 { margin: 0; font-family: var(--font-display); font-size: 1.6rem; color: var(--display-ink); }
.batch-makes {
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: var(--fs-xs); color: var(--on-gold); background: var(--gold);
  padding: 0.2rem 0.55rem; border-radius: 2px; white-space: nowrap;
}
.batch-intro { margin: var(--sp-3) 0 0; color: var(--text-muted); line-height: 1.6; }
.batch-part { margin-top: var(--sp-4); }
.batch-part .cg-label { margin-bottom: var(--sp-2); }
.batch-mix { list-style: none; margin: 0; padding: 0; }
.batch-mix li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--rule); font-size: var(--fs-lg);
}
.batch-mix li:last-child { border-bottom: 0; }
.batch-chill { margin: var(--sp-2) 0 0; font-style: italic; color: var(--text-muted); }
.batch-pour { font-style: normal; color: var(--gold); }
/* Reuse .steps numbering but tuck the batch steps in a touch tighter. */
.batch-steps li p { font-size: var(--fs-base, 1rem); }

/* Story — rendered LAST (DECISIONS: anti-food-blog layout principle) */
.story { border-top: 1px solid var(--border); padding: var(--sp-6) 0; scroll-margin-top: 80px; }
.story .cg-label { margin-bottom: var(--sp-4); }
.story-prose { max-width: 62ch; }
.story-prose p {
  font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.8;
  color: var(--text); margin: 0 0 1.1em;
}
.story-prose p:last-child { margin-bottom: 0; }
.story-prose em { color: var(--text); }

footer { padding: var(--sp-6) 0; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .photo { max-width: 380px; }

  /* Compact the bar: the grocery button drops its text for an icon so the brand,
     grocery, theme, and hamburger controls all fit one row. */
  .site-header .bar { position: relative; gap: var(--sp-3); }
  .gbtn { width: 40px; height: 40px; padding: 0; justify-content: center; }
  .gbtn .gbtn-label { display: none; }
  .gbtn-icon { display: block; width: 18px; height: 18px; }

  /* Nav collapses behind the hamburger. Open, it drops down as a full-bar panel. */
  .menu-btn { display: inline-flex; }
  .nav { display: none; }
  .site-header.menu-open .nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
    background: var(--surface); border: 1px solid var(--border-strong);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }
  .site-header.menu-open .nav a {
    padding: var(--sp-3) var(--sp-4); font-size: var(--fs-lg); color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .site-header.menu-open .nav a:last-child { border-bottom: 0; }
  .site-header.menu-open .nav a:hover,
  .site-header.menu-open .nav a[aria-current="page"] { color: var(--gold); }

  /* On desktop the batch box lives inside the aside, tucked under the ingredients
     card. On mobile the columns stack, so we flatten the aside (display:contents)
     to make the batch a sibling of the method column, then reorder so the flow is
     ingredients → method → batch — the method follows straight after the card. */
  .body {
    display: flex; flex-direction: column; gap: var(--sp-5);
    grid-template-columns: none;
  }
  .body > aside { display: contents; }
  .body > aside > #servingControl { order: 1; }
  .body > aside > .cg-card { order: 2; margin-top: 0 !important; }
  .body > aside > .diet-note { order: 3; }
  .body > div { order: 4; }
  .body > aside > .batch { order: 5; margin-top: 0; }
}

/* ---- Grocery drawer ----------------------------------------------------- */

.gbtn {
  position: relative; display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: var(--fs-xs); color: var(--text); background: transparent;
  border: 1px solid var(--border-strong); border-radius: 8px; padding: 0.5em 0.9em; cursor: pointer;
}
.gbtn:hover { border-color: var(--gold); color: var(--gold); }
.gbtn-icon { display: none; }        /* desktop shows the text label; mobile swaps to the icon */
.gbtn .count-badge {
  position: absolute; top: -9px; right: -9px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: var(--on-gold); font-family: var(--font-body); font-weight: 700;
  font-size: 10px; letter-spacing: 0; display: flex; align-items: center; justify-content: center;
}
.scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none;
  transition: opacity 0.3s; z-index: 40;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 90vw;
  background: var(--surface); border-left: 1px solid var(--border-strong);
  transform: translateX(100%); transition: transform 0.32s ease; z-index: 50;
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer > header {
  padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer .drawer-body { flex: 1; overflow: auto; }
.drawer .items { padding: var(--sp-2) var(--sp-4); }
.drawer > footer { padding: var(--sp-3) var(--sp-4); border-top: 1px solid var(--border); }

/* ---- "Take it with you" — QR + copy link (DECISIONS § grocery) ---------- */
.share {
  padding: var(--sp-4); margin: var(--sp-2) var(--sp-4) 0;
  border-top: 1px solid var(--border);
}
.share[hidden] { display: none; }
.share .cg-label { margin-bottom: var(--sp-3); }
/* Gold tile / dark modules / light quiet-zone is baked into the SVG itself
   (grocery-share.js) so it scans the same in light or dark. The wrapper just
   sizes and centers it. */
.qr-tile { display: flex; justify-content: center; }
.qr-tile svg {
  width: 190px; height: 190px; display: block; border-radius: 2px;
  border: 1px solid var(--border);   /* defines the white tile on the cream surface */
}
.qr-tile .qr-fallback {
  font-family: var(--font-caption); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: var(--fs-xs); color: var(--text-muted); text-align: center;
  border: 1px dashed var(--border-strong); padding: var(--sp-4); line-height: 1.5;
}
.share-help { font-size: var(--fs-sm); color: var(--text-muted); margin: var(--sp-3) 0 0; }
.share-actions { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.share-actions .cg-btn { flex: 1; justify-content: center; }
.share-note {
  font-size: var(--fs-xs); color: var(--text-muted); font-style: italic;
  margin: var(--sp-3) 0 0;
}
.gitem {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.8em 0; border-bottom: 1px dashed var(--border);
}
.gitem .rm { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.95rem; padding: 0 0.2em; }
.gitem .rm:hover { color: var(--gold); }
/* Drawer quantity stepper — echoes the recipe-page .stepper, sized down for the
   grocery row. Only whole-count items (lemons, cherries…) render it; oz items keep
   the plain amount display + ✕. */
.gitem .gstep { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); }
.gitem .gstep button {
  width: 26px; height: 26px; background: transparent; border: none; color: var(--text);
  font-family: var(--font-display); font-size: 1.1rem; line-height: 1; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.gitem .gstep button:hover { background: var(--gold); color: var(--on-gold); }
.gitem .gstep .gcount {
  min-width: 30px; text-align: center; font-size: var(--fs-xs); line-height: 26px;
  color: var(--text-muted);
  border-left: 1px solid var(--border-strong); border-right: 1px solid var(--border-strong);
}
.drawer-close { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; }
.drawer-close:hover { color: var(--gold); }
.empty { color: var(--text-muted); font-style: italic; padding: 2rem 0; }

/* Print — target ONE page: ingredients + method only, at the current scaled
   servings (the live DOM already reflects the user's choice; we don't reset it).
   Everything decorative or interactive is stripped. See DECISIONS § Print. */
@media print {
  @page { margin: 0.6in; }

  /* Chrome, controls, and everything that isn't the recipe itself. */
  .site-header, .pagenav, .jumps, .breadcrumb, .row, #addGrocery, #servingControl,
  .drawer, .scrim, .gbtn, .toggle, .photo, .cg-quote, .variation-note, .variations,
  .batch, .tip, .parent-link, .story, footer, .cg-lead { display: none !important; }

  html, body { background: #fff !important; color: #000 !important; }
  * { box-shadow: none !important; }

  /* Print-only header: small wordmark, title, live serves. */
  .print-head { display: block !important; margin-bottom: 10pt; }
  .print-head .ph-brand {
    display: block; font-family: var(--font-caption); text-transform: uppercase;
    letter-spacing: 0.18em; font-size: 8pt; color: #000;
  }
  .print-head .ph-title {
    display: block; font-family: var(--font-display); font-size: 18pt; line-height: 1.1; margin-top: 2pt;
  }
  .print-head .ph-serves { display: block; font-size: 9pt; color: #000; margin-top: 2pt; }

  /* Kill the giant screen hero; the print header replaces it. */
  .hero { display: none !important; }

  /* Single column: ingredients first, then method. */
  main.cg-container { max-width: none; padding: 0; }
  .body { display: block !important; border: 0 !important; padding: 0 !important; }
  .body aside { margin-bottom: 10pt; }

  /* Strip card ink; keep a hairline around the ingredients for legibility. */
  .cg-card, .cg-card--framed { border: 0 !important; background: none !important; padding: 0 !important; }
  .cg-card .cg-label { font-size: 9pt; }
  .ing-list li { padding: 2pt 0; border-bottom: 1px dashed #bbb; }
  .ing-list .name, .ing-list .amt { font-size: 10pt; color: #000; }
  .equipment { display: none; }

  /* Method: shrink the oversized step numerals and body copy. */
  .body h2 { font-size: 12pt; margin: 8pt 0 4pt; }
  .steps li { padding: 3pt 0; border-bottom: 1px solid #ddd; break-inside: avoid; }
  .steps li::before { font-size: 11pt; }
  .steps li p { font-size: 10pt; line-height: 1.35; }

  a[href] { color: #000; text-decoration: none; }
}
