/* =========================================================
   The Wedding of Frizon & Moza  — Landing Page
   Palette inspired by the "Pandora" theme: warm ivory,
   dusty sage green, antique gold, soft charcoal.
   ========================================================= */

:root {
  --bg:            #f3ece0;   /* warm ivory / cream */
  --bg-soft:       #ece2d0;   /* deeper cream for bands */
  --sage:          #7d8a6b;   /* dusty sage green (primary) */
  --sage-dark:     #5f6a51;   /* deeper sage */
  --sage-light:    #a8b395;   /* misty sage */
  --gold:          #b08d57;   /* antique gold */
  --gold-light:    #d4b889;   /* warm champagne */
  --ink:           #2f2b26;   /* deep warm charcoal */
  --ink-soft:      #5a5147;   /* soft brown-grey */
  --muted:         #8a7e6e;   /* muted taupe */
  --paper:         #fbf7ee;   /* off-white card */
  --shadow:        0 20px 50px rgba(70, 60, 45, 0.18);
  --shadow-soft:   0 6px 18px rgba(70, 60, 45, 0.10);

  --font-serif:    "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script:   "Pinyon Script", "Great Vibes", cursive;
  --font-sans:     "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  background: var(--bg);
  overflow-x: hidden;   /* prevent any horizontal scroll from full-bleed images */
}

body {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;   /* same safety, covers older browsers */
}

/* ---------- PAGE-WIDE BACKGROUND IMAGE OVERLAY ----------
   background.JPG sits fixed behind everything, 33% visible
   (67% transparent), auto-scales to every viewport.
*/
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('./assets/images/background.JPG');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.33;
  z-index: -1;
  pointer-events: none;
}

body.no-scroll { overflow: hidden; height: 100vh; }

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

a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--gold); }

.script   { font-family: var(--font-script); font-weight: 400; }
.serif    { font-family: var(--font-serif); }

/* ===========================================================
   COVER / OPENING SCREEN
   =========================================================== */
.cover {
  position: fixed;
  inset: 0;
  z-index: 50;
  background:
    radial-gradient(ellipse at center,
      rgba(125, 138, 107, 0.15) 0%,
      rgba(125, 138, 107, 0.45) 60%,
      rgba(60, 68, 50, 0.75) 100%),
    linear-gradient(135deg, #8a9677 0%, #6b7456 50%, #4f5a3d 100%);
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--paper);
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 1.2s;
  overflow-y: auto;            /* allow scroll when content is taller than viewport */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.cover.is-hidden {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}

.cover__overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 184, 137, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212, 184, 137, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

/* Ornate corners */
.cover__corner {
  position: absolute;
  width: 110px; height: 110px;
  border: 1px solid rgba(251, 247, 238, 0.5);
}
.cover__corner--tl { top: 28px; left: 28px;  border-right: 0; border-bottom: 0; }
.cover__corner--tr { top: 28px; right: 28px; border-left: 0; border-bottom: 0; }
.cover__corner--bl { bottom: 28px; left: 28px;  border-right: 0; border-top: 0; }
.cover__corner--br { bottom: 28px; right: 28px; border-left: 0; border-top: 0; }

.cover__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 600px;
  /* margin:auto on a flex item vertically centers when content fits,
     and falls back to top-aligned + scroll when the viewport is short */
  margin: auto;
  animation: fadeUp 1.4s ease both;
}

/* Decorative image above "The Wedding of" */
.cover__ornament-img {
  display: block;
  width: auto;
  max-width: min(70%, 240px);
  max-height: 28vh;           /* never eat more than ~28% of viewport height */
  height: auto;
  margin: 0 auto 1.2rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}

.cover__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  margin: 0 0 0.8rem;
  opacity: 0.9;
}

.cover__names {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(3.8rem, 12vw, 7rem);
  line-height: 1;
  margin: 0.4rem 0 0.8rem;
  color: #fbf7ee;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.cover__names .amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.45em;
  vertical-align: middle;
  color: var(--gold-light);
  padding: 0 0.2em;
}

.cover__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 1.2rem auto 1.5rem;
  max-width: 260px;
}
.cover__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(251,247,238,0.7), transparent);
}
.cover__divider .dot {
  flex: none;
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--gold-light);
}

.cover__date {
  font-family: var(--font-serif);
  letter-spacing: 0.3em;
  font-size: 1.05rem;
  margin: 0 0 2rem;
  opacity: 0.95;
}

.cover__guest {
  margin: 1.5rem 0 2.5rem;
  font-size: 0.95rem;
}
.cover__greet, .cover__location {
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0.2rem 0;
  opacity: 0.85;
}
.cover__guestname {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0.4rem 0;
  letter-spacing: 0.05em;
}

.cover__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.4rem;
  border: 1px solid rgba(251, 247, 238, 0.8);
  background: rgba(251, 247, 238, 0.08);
  color: #fbf7ee;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}
.cover__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fbf7ee;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.cover__btn-icon { font-size: 1rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   INVITATION MAIN
   =========================================================== */
.invitation {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.2rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.invitation.is-visible { opacity: 1; }

.section {
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
}

.section__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--sage-dark);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

/* Ornaments */
.ornament {
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0.5rem auto 1.4rem;
  position: relative;
}
.ornament::before, .ornament::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  vertical-align: middle;
  margin: 0 14px;
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament--bot { margin: 1.4rem auto 0.5rem; }

/* ---------- VERSE ---------- */
.section--verse {
  background: var(--bg-soft);
  border-radius: 6px;
  margin-top: 1.5rem;
}

/* Decorative image above the Bismillah — fills the verse section width.
   It flushes to the section's left/right edges (negative side margins
   cancel the section's horizontal padding) but never breaks out of
   the 720px invitation container. */
.verse__topimg {
  display: block;
  width: calc(100% + 2rem);    /* 100% of section content + the 1rem padding on each side */
  max-width: calc(100% + 2rem);
  height: auto;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -5rem;            /* eat section's top padding so it flushes to section top */
  margin-bottom: 1.6rem;
}
.verse__arabic {
  font-family: "Amiri", "Traditional Arabic", serif;
  font-size: 1.8rem;
  color: var(--sage-dark);
  margin: 0.6rem 0 1.4rem;
  direction: rtl;
}
.verse__hello {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  margin: 0 0 1.8rem;
}
.verse__box {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  padding: 1.4rem 1.8rem;
  background: var(--paper);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 4px;
  position: relative;
}
.verse__box::before, .verse__box::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.verse__box::before { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.verse__box::after  { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }
.verse__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.8;
  margin: 0 0 0.8rem;
}
.verse__ref {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin: 0;
}
.verse__lede {
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
}

/* Decorative bird image above "The Bride & Groom" —
   fills the couple section width (within the 720px invitation). */
.couple__topimg {
  display: block;
  width: calc(100% + 2rem);
  max-width: calc(100% + 2rem);
  height: auto;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
  margin-bottom: 1.4rem;
}

/* ---------- COUPLE ---------- */
.couple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (min-width: 820px) {
  .couple {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
  }
}

.person {
  text-align: center;
  padding: 1rem;
}

.person__photo {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
  background: linear-gradient(135deg, #d4cdbd, #b5ad99);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-align: center;
}
.person__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.person__placeholder-label {
  display: none;
  padding: 0 0.6rem;
  line-height: 1.4;
}
.person__placeholder-label small {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.person__photo.is-placeholder .person__placeholder-label { display: block; }

.person__role {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}
.person__name {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--sage-dark);
  margin: 0.2rem 0 0.2rem;
  line-height: 1.1;
}
.person__nickname {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
  margin: 0 0 1rem;
}
.person__parents {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}
.person__parents strong {
  color: var(--ink);
  font-weight: 600;
}

.couple__amp {
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
}

/* ---------- DATE CARD + COUNTDOWN ---------- */
.date-card {
  max-width: 380px;
  margin: 1.5rem auto 2rem;
  padding: 2rem 1.5rem;
  background: var(--paper);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 4px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.date-card::before, .date-card::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.date-card::before { top: 14px; }
.date-card::after  { bottom: 14px; }

.date-card__day {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.date-card__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.6rem 0;
}
.date-card__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--sage-dark);
}
.date-card__month-year {
  text-align: left;
  font-family: var(--font-serif);
  line-height: 1.2;
}
.date-card__month {
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--ink);
}
.date-card__year {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
}
.date-card__time {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.countdown__unit {
  background: var(--sage);
  color: var(--paper);
  padding: 1rem 0.4rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.countdown__unit:hover { transform: translateY(-3px); }
.countdown__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}
.countdown__lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--sage);
  color: var(--paper);
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn--outline:hover {
  background: var(--sage-dark);
  color: var(--paper);
}

/* ---------- VENUE ---------- */
.section--venue { background: var(--bg-soft); border-radius: 6px; }
.venue-card {
  max-width: 480px;
  margin: 0 auto 2rem;
  padding: 2rem 1.6rem;
  background: var(--paper);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.venue-card__name {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--sage-dark);
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
}
.venue-card__addr {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.venue-card__time {
  border-top: 1px dashed var(--gold);
  border-bottom: 1px dashed var(--gold);
  padding: 1rem 0;
  margin: 1rem 0 1.4rem;
  font-family: var(--font-serif);
  color: var(--ink-soft);
}
.pill {
  display: inline-block;
  background: var(--gold);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-right: 0.4rem;
}
.venue-card__note {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.map-embed {
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  border: 6px solid var(--paper);
  outline: 1px solid var(--gold);
  outline-offset: -1px;
  box-shadow: var(--shadow-soft);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Decorative thank-you image — sits at the bottom of the venue
   (brownish) section, between the map and the Thanks section.
   Fills the venue section width; flushes directly to the bottom
   of the Google Map AND to the section's bottom edge so it looks
   baked into the brown box. */
.venue__tyou {
  display: block;
  width: calc(100% + 2rem);
  max-width: calc(100% + 2rem);
  height: auto;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 0;                /* sticks directly under the Google Map */
  margin-bottom: -5rem;         /* eat the section's bottom padding so it flushes to section bottom */
}

/* ---------- THANKS ---------- */
.section--thanks { padding-bottom: 6rem; }
.thanks__body {
  max-width: 560px;
  margin: 0 auto 1rem;
  font-family: var(--font-serif);
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}
.thanks__closing {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  margin: 2rem 0 1.4rem;
}
.thanks__sign {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  margin: 0 0 0.2rem;
  font-style: italic;
}
.thanks__couple {
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--sage-dark);
  margin: 0 0 1rem;
  line-height: 1;
}

.footer {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(176, 141, 87, 0.35);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer p { margin: 0; }

/* ===========================================================
   MUSIC TOGGLE (floating)
   =========================================================== */
.music-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-dark);
  border: 2px solid var(--gold);
  color: var(--paper);
  cursor: pointer;
  display: none;   /* hidden until invitation opens */
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
.music-toggle:hover { transform: scale(1.06); background: var(--sage); }
.music-toggle.is-visible { display: inline-flex; }
.music-toggle__disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  border-radius: 50%;
  animation: spin 9s linear infinite;
  animation-play-state: paused;
}
.music-toggle.is-playing .music-toggle__disc { animation-play-state: running; }
.music-toggle__icon { font-size: 1.3rem; line-height: 1; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===========================================================
   UTILITIES / ANIMATIONS ON SCROLL
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 520px) {
  .cover__corner { width: 70px; height: 70px; }
  .person__photo { width: 180px; height: 180px; }
  .countdown { gap: 0.5rem; }
  .countdown__unit { padding: 0.8rem 0.3rem; }
  .date-card__num { font-size: 4.2rem; }
  .section { padding: 4rem 0.8rem; }
  .music-toggle { bottom: 16px; right: 16px; width: 48px; height: 48px; }

  /* Cover ornament scales down on narrow screens */
  .cover__ornament-img { max-width: min(70%, 180px); max-height: 22vh; }

  /* Section padding shrinks to 0.8rem per side on phones, so the
     decorative images' negative side-margins follow along */
  .verse__topimg {
    width: calc(100% + 1.6rem);
    max-width: calc(100% + 1.6rem);
    margin-left: -0.8rem;
    margin-right: -0.8rem;
    margin-top: -4rem;
  }
  .couple__topimg {
    width: calc(100% + 1.6rem);
    max-width: calc(100% + 1.6rem);
    margin-left: -0.8rem;
    margin-right: -0.8rem;
    margin-top: -0.8rem;
    margin-bottom: 1rem;
  }
  .venue__tyou {
    width: calc(100% + 1.6rem);
    max-width: calc(100% + 1.6rem);
    margin-left: -0.8rem;
    margin-right: -0.8rem;
    margin-top: 0;
    margin-bottom: -4rem;
  }

  /* Short viewports (e.g. landscape phones): let the cover button
     be reachable by scrolling */
  .cover__content { padding: 2.2rem 1.2rem; }
}

/* Extra-short viewports (common on laptops in landscape): make
   sure the cover scrolls rather than clipping the button. */
@media (max-height: 760px) {
  .cover__ornament-img { max-height: 22vh; margin-bottom: 0.8rem; }
  .cover__content      { padding: 2rem 1.5rem; }
  .cover__names        { font-size: clamp(3rem, 9vw, 5.5rem); }
  .cover__guest        { margin: 1rem 0 1.6rem; }
}
