/* ============================================================
   ApresMeet — Landing page styles (Phase 1 redesign)
   Scope: / (home, logged-out) only
   ============================================================ */

/* ── Remove pre-body spacer and menu gaps ────────────────── */
#div_pre_body_main { margin-top: 0 !important; height: 0 !important; padding: 0 !important; line-height: 0 !important; }
#div_menu_outer    { padding: 0; margin: 0; }
#div_menu_outer .row { margin: 0; }
#div_menu_outer .col { padding: 0; }

/* ── Eliminate the strip: body bg must match navbar ──────── */
body.am-landing-page-active {
  background-color: var(--am-navy) !important;
}


/* ── Page wrapper ────────────────────────────────────────── */
.am-landing-page {
  flex: 1 0 auto;
}

/* ── Fold 1: Hero ────────────────────────────────────────── */
.am-landing-hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 56px; /* clear fixed navbar */
}

/* 50/50 split — flex:1 lets it fill the remaining space so
   the city bar stays pinned at the bottom of the viewport */
.am-landing-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   LEFT PANEL — black surround + contained media frame
   ═══════════════════════════════════════════════════════════ */
.am-landing-left {
  background: #000;
  display: flex;
  padding: 1.25rem;
}

/* Rounded frame floats inside the black surround */
.am-media-frame {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* First-paint poster — visible immediately, never flashes.
   contain = full composition always visible; black surround absorbs any letterbox */
.am-media-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* Video crossfades in once buffered and playing */
.am-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.am-media-video.am-video-ready { opacity: 1; }

/* Scrim — light vignette only; full composition is visible with contain so
   we don't want an aggressive directional gradient blocking content */
.am-media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,42,0.55) 0%,
    rgba(13,27,42,0.18) 40%,
    rgba(0,0,0,0.04) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Content sits above scrim */
.am-landing-left__content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  width: 100%;
  padding: 3rem 3.5rem;
}

/* ── Eyebrow label ───────────────────────────────────────── */
.am-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--am-teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.am-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--am-teal);
  flex-shrink: 0;
}

/* ── Hero headline ───────────────────────────────────────── */
.am-hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  xmargin-bottom: 1.25rem;
  margin-top: 1.00rem;
}

.am-hero-h1 em {
  color: var(--am-teal);
  font-style: italic;
}

/* ── Sub-copy ────────────────────────────────────────────── */
.am-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.80;
  max-width: 400px;
  xmargin-bottom: 1.75rem;
  margin-top: 30.00rem;
}

/* ── Feature bullet list ─────────────────────────────────── */
.am-hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.75rem;
}

.am-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

/* Dark-bg check circle — teal outline, translucent fill */
.am-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,196,154,.18);
  border: .5px solid rgba(0,196,154,.50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Trust line ──────────────────────────────────────────── */
.am-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.48);
}

.am-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--am-teal);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   RIGHT PANEL — white form card
   ═══════════════════════════════════════════════════════════ */
.am-landing-right {
  background: var(--am-white);
  border-left: .5px solid var(--am-slate-200);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ── Login card ─────────────────────────────────────────── */
.am-login-card {
  width: 100%;
  max-width: 380px;
  margin: 0;
}

.am-login-card__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.am-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--am-teal-light);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  color: #00705A;
  font-weight: 500;
  margin-bottom: .75rem;
}

.am-login-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--am-navy);
}

.am-card-state-sub {
  font-size: 13px;
  color: var(--am-slate);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 1.2em;
}

/* ── Inputs ──────────────────────────────────────────────── */
.am-inp-wrap {
  position: relative;
  margin-bottom: .875rem;
}

.am-inp-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--am-slate-200);
}

.am-inp {
  width: 100%;
  border: 1.5px solid #94a3b8;
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--am-navy);
  outline: none;
  background: var(--am-white);
  transition: border-color .15s;
}

.am-inp::placeholder { color: #CBD5E1; }
.am-inp:focus        { border-color: var(--am-teal); }
.am-inp.am-inp--error { border-color: var(--am-red); }
.am-inp.am-inp--error:focus { border-color: var(--am-red); }

/* ── Buttons ─────────────────────────────────────────────── */
.am-btn-navy {
  width: 100%;
  background: var(--am-navy);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 13px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
  margin-bottom: .875rem;
}

.am-btn-navy:hover { background: var(--am-navy-800); }

.am-btn-soft {
  width: 100%;
  background: var(--am-white);
  color: var(--am-navy);
  border: 1.5px solid var(--am-slate-200);
  border-radius: 100px;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: .875rem;
}

.am-btn-soft:disabled {
  opacity: .45;
  cursor: default;
}

/* ── Separator + helpers ─────────────────────────────────── */
.am-sep {
  border: none;
  border-top: .5px solid var(--am-slate-200);
  margin: .875rem 0;
}

.am-helper {
  font-size: 12px;
  color: var(--am-slate);
  text-align: center;
  line-height: 1.65;
}

.am-helper strong { color: var(--am-navy); }

.login_helper_error { color: #dc3545 !important; }

.am-tos-note {
  font-size: 11px;
  color: var(--am-slate);
  text-align: center;
  margin-top: .875rem;
}

.am-tos-note a {
  color: var(--am-slate);
  text-decoration: underline;
}

/* ── Change email row ────────────────────────────────────── */
.am-change-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .875rem;
  padding-top: .875rem;
  border-top: .5px solid var(--am-slate-200);
}

.am-change-lbl  { font-size: 12px; color: var(--am-teal-mid); font-weight: 500; }
.am-change-email { font-size: 12px; color: var(--am-slate); }

/* ── Step indicator ──────────────────────────────────────── */
.am-step-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.am-step {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--am-slate-200);
}

.am-step--done { background: var(--am-teal); }
.am-step--now  { background: var(--am-navy); }

/* ── Login complete (spinner) ────────────────────────────── */
.am-login-complete {
  text-align: center;
  padding: 2rem 0;
  color: var(--am-navy);
}

/* ═══════════════════════════════════════════════════════════
   CITY BAR
   ═══════════════════════════════════════════════════════════ */
.am-city-bar {
  background: var(--am-navy);
  padding: 14px 0;
  flex-shrink: 0;
}

.am-city-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.am-city-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.am-city-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--am-teal);
  flex-shrink: 0;
  animation: am-pulse 2s ease-in-out infinite;
}

@keyframes am-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .45; }
}

.am-city-live {
  font-size: 12px;
  color: rgba(255,255,255,.90);
  font-weight: 500;
}

.am-city-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.am-city-coming {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-style: italic;
  letter-spacing: .02em;
}

.am-city-sep { color: rgba(255,255,255,.25); font-size: 12px; }

.am-waitlist-btn {
  font-size: 12px;
  color: var(--am-teal);
  border: .5px solid rgba(0,196,154,.40);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background .15s, border-color .15s;
}

.am-waitlist-btn:hover {
  background: rgba(0,196,154,.10);
  border-color: var(--am-teal);
  color: var(--am-teal);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   FOLD 2 — FAQ
   ═══════════════════════════════════════════════════════════ */
.am-faq-section {
  background: var(--am-white);
  padding: 4rem 0 3rem;
}

.am-faq-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--am-teal-mid);
  margin-bottom: .4rem;
}

.am-faq-h {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--am-navy);
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  border-bottom: .5px solid var(--am-slate-200);
}

.am-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.am-faq-grid > div:first-child {
  border-right: .5px solid var(--am-slate-200);
  padding: 2rem 3rem 2rem 0;
}

.am-faq-grid > div:last-child {
  padding: 2rem 0 2rem 3rem;
}

.am-faq-item {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: .5px solid var(--am-slate-200);
}

.am-faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.am-faq-tag {
  display: inline-block;
  background: var(--am-slate-100);
  color: var(--am-slate);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: .5rem;
}

.am-faq-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--am-navy);
  margin-bottom: .4rem;
  line-height: 1.35;
}

.am-faq-a {
  font-size: 13px;
  color: var(--am-slate);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (992px – 1199px) ─────────────────────────────── */
@media (max-width: 1199px) {
  .am-landing-left__content {
    max-width: 380px;
    padding: 2.5rem 3rem 2.5rem 2.5rem;
  }

  .am-hero-h1 { font-size: 40px; }

  .am-landing-right {
    padding: 2.5rem 2rem;
  }
}

/* ── Mobile (< 992px) ───────────────────────────────────── */
@media (max-width: 991px) {

  .am-landing-hero {
    min-height: auto;
  }

  .am-landing-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Left panel: fixed height on mobile */
  .am-landing-left {
    height: 340px;
    padding: 1rem;
  }

  /* Tighter radius; push content to bottom of frame */
  .am-media-frame {
    border-radius: 14px;
    align-items: flex-end;
  }

  /* Mobile scrim — soft bottom darkening so text reads over image */
  .am-media-scrim {
    background: linear-gradient(
      to bottom,
      rgba(13,27,42,0.08) 0%,
      rgba(13,27,42,0.65) 100%
    );
  }

  .am-landing-left__content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .am-hero-h1  { font-size: 34px; }
  .am-hero-sub { max-width: 100%; font-size: 14px; margin-bottom: 1.25rem; }

  /* Hide bullets on mobile to keep hero tight */
  .am-hero-features { display: none; }

  .am-landing-right {
    border-left: none;
    border-top: .5px solid var(--am-slate-200);
    padding: 2rem 1.5rem;
    align-items: stretch;
  }

  .am-login-card { max-width: 100%; }

  .am-faq-grid {
    grid-template-columns: 1fr;
  }

  .am-faq-grid > div:first-child {
    border-right: none;
    border-bottom: .5px solid var(--am-slate-200);
    padding: 2rem 0;
  }

  .am-faq-grid > div:last-child {
    padding: 2rem 0;
  }

  .am-city-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ═══════════════════════════════════════════════════════════
   LOGIN REDESIGN — State 1: LinkedIn / Email toggle
   ═══════════════════════════════════════════════════════════ */

/* Toggle pill — centered block */
.am-login-toggle {
  display: flex;
  width: fit-content;
  align-items: center;
  border-radius: 100px;
  background: var(--am-slate-100);
  border: 1px solid var(--am-slate-200);
  padding: 3px;
  gap: 2px;
  cursor: pointer;
  user-select: none;
  margin: 0 auto 1.5rem;
}

.am-toggle-opt {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--am-slate);
  transition: background .2s, color .2s, font-weight .2s;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.am-login-toggle .am-toggle-li {
  color: #0A66C2;
  
}

.am-login-toggle.li-on .am-toggle-li {
  background: #0A66C2;
  color: #fff;
  font-weight: 600;
}

.am-login-toggle.em-on .am-toggle-em {
  background: var(--am-navy);
  color: #fff;
  font-weight: 600;
}

/* Panel icon — bare, centred, same size for both routes */
.am-panel-icon {
  text-align: center;
  font-size: 48px;
  color: var(--am-navy);
  margin: .375rem 0 1.125rem;
}

/* Mark wrappers — centred, no background shape */
.am-mark-wrap {
  display: flex;
  justify-content: center;
  margin: .375rem 0 1.125rem;
}

.am-li-mark,
.am-em-mark {
  font-size: 118px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Auth title / sub — centred */
.am-auth-title {
  font-family: 'DM Serif Display', serif;
  font-size: 23px;
  color: var(--am-navy);
  text-align: center;
  margin-bottom: .3rem;
}

.am-auth-sub {
  font-size: 13px;
  color: var(--am-slate);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.25rem;
}

/* LinkedIn primary button */
.am-btn-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: #0A66C2;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: .5rem;
  transition: background .15s;
}

.am-btn-linkedin:hover {
  background: #0958a8;
  color: #fff;
  text-decoration: none;
}

.am-li-btn-ico {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.am-li-usage-note {
  font-size: 11px;
  color: var(--am-slate);
  text-align: center;
  margin-top: .5rem;
  line-height: 1.6;
}

/* LinkedIn nudge box (shown in email panel) */
.am-li-nudge {
  display: flex;
  gap: 6px;
  background: #EFF6FF;
  border: .5px solid #BFDBFE;
  border-radius: 10px;
  padding: .625rem .75rem;
  font-size: 11.5px;
  color: #1E40AF;
  line-height: 1.6;
  margin-bottom: .75rem;
}

.am-nudge-switch {
  display: block;
  color: #0A66C2;
  font-weight: 600;
  text-decoration: none;
  margin-top: .1rem;
}

.am-nudge-switch:hover { text-decoration: underline; color: #0958a8; }

/* Fine print */
.am-fine-print {
  font-size: 11px;
  color: #CBD5E1;
  text-align: center;
  margin-top: .875rem;
  line-height: 1.6;
}

.am-fine-print a { color: #CBD5E1; }

/* ═══════════════════════════════════════════════════════════
   LOGIN REDESIGN — State 2: OTP boxes
   ═══════════════════════════════════════════════════════════ */

.am-step-bar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.375rem;
}

.am-step-label {
  font-size: 11px;
  color: var(--am-slate);
}

.am-otp-head {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: var(--am-navy);
  text-align: center;
  margin-bottom: .3rem;
}

.am-otp-sub {
  font-size: 13px;
  color: var(--am-slate);
  line-height: 1.6;
  text-align: center;
  margin-bottom: .25rem;
}

.am-otp-box {
  background: var(--am-slate-100);
  border: .5px solid var(--am-slate-200);
  border-radius: 12px;
  padding: 1.125rem;
  text-align: center;
  margin: 1rem 0;
}

.am-otp-fields {
  display: flex;
  gap: .75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: .4rem;
}

.am-otp-digit {
  width: 108px;
  height: 54px;
  border: 1.5px solid var(--am-slate-200);
  border-radius: 9px;
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.18em;
  color: var(--am-navy);
  outline: none;
  background: var(--am-white);
  transition: border-color .15s;
}

.am-otp-digit:focus { border-color: var(--am-teal); }

.am-otp-sep {
  font-size: 22px;
  color: var(--am-slate);
  line-height: 1;
  user-select: none;
}

.am-otp-hint {
  font-size: 11px;
  color: var(--am-slate);
  margin: 0;
}

.am-otp-resend {
  color: var(--am-teal-mid);
  font-weight: 500;
  cursor: pointer;
}

.am-otp-resend:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   LOGIN REDESIGN — State 3: Profile completion
   ═══════════════════════════════════════════════════════════ */

.am-profile-head {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: var(--am-navy);
  text-align: center;
  margin-bottom: .3rem;
}

.am-profile-sub {
  font-size: 13px;
  color: var(--am-slate);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.125rem;
}

.am-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: .125rem;
}

.am-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--am-slate);
  margin-bottom: .35rem;
}

.am-optional-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(100,116,139,.6);
  letter-spacing: 0;
  text-transform: none;
}

.am-inp-icon--sm {
  font-size: 13px;
  color: #0A66C2;
}

/* ═══════════════════════════════════════════════════════════
   LOGIN REDESIGN — State 4: Pending state
   ═══════════════════════════════════════════════════════════ */

.am-pending-badge-wrap {
  margin-bottom: .875rem;
}

.am-pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--am-amber-light);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  color: #8B5E00;
  font-weight: 600;
}

.am-pending-head {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--am-navy);
  margin-bottom: .3rem;
}

.am-pending-sub {
  font-size: 13px;
  color: var(--am-slate);
  line-height: 1.6;
  margin-bottom: 1.125rem;
}

.am-pending-access-box {
  background: rgba(245,166,35,.06);
  border: .5px solid rgba(245,166,35,.28);
  border-radius: 12px;
  padding: .875rem 1rem;
  margin-bottom: 1.125rem;
}

.am-pending-access-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.am-pending-access-row + .am-pending-access-row {
  margin-top: .375rem;
}

.am-pending-access-row--open  { color: var(--am-navy); }
.am-pending-access-row--open i { font-size: 10px; color: var(--am-teal-mid); width: 13px; }

.am-pending-access-row--locked { color: var(--am-slate); }
.am-pending-access-row--locked i { font-size: 10px; color: var(--am-slate-200); width: 13px; }

/* Continue button for pending state (disabled until GDPR checked) */
.am-pending-continue {
  margin-top: .875rem;
}

.am-pending-continue:disabled {
  opacity: .45;
  cursor: default;
}

/* ── Small mobile (< 576px) ─────────────────────────────── */
@media (max-width: 575px) {
  .am-landing-left {
    height: 280px;
    padding: .75rem;
  }

  .am-landing-left__content {
    padding: 1.25rem;
  }

  .am-landing-right {
    padding: 1.5rem 1.25rem;
  }

  .am-hero-h1  { font-size: 30px; }
  .am-hero-sub { display: none; } /* hide on small screens — tight space */
  .am-hero-trust { display: none; }

  .am-faq-section { padding: 2.5rem 0 2rem; }
}
