/* ===========================================================
   FishingAlicante — estilo limpio y luminoso (azul/blanco)
   =========================================================== */

:root {
  --c-deep:        #06283d;
  --c-primary:     #0a4d68;
  --c-accent:      #3fb6dd;
  --c-accent-soft: #e6f4fb;
  --c-sand:        #f4f9fc;
  --c-line:        #d8e6ee;
  --c-text:        #0e2230;
  --c-muted:       #5b7385;
  --c-white:       #ffffff;
  --c-success:     #1f8a5b;

  --shadow-sm: 0 1px 2px rgba(10, 77, 104, 0.06), 0 1px 3px rgba(10, 77, 104, 0.08);
  --shadow-md: 0 6px 18px rgba(6, 40, 61, 0.08), 0 2px 6px rgba(6, 40, 61, 0.05);
  --shadow-lg: 0 18px 40px rgba(6, 40, 61, 0.14);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1180px;

  --font-display: "Plus Jakarta Sans", "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--c-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-deep);
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--c-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(216, 230, 238, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-deep);
  letter-spacing: -0.01em;
}
.brand .brand-mark {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid; place-items: center;
  color: white;
  box-shadow: var(--shadow-sm);
}
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand b { color: var(--c-accent); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--c-text);
  font-weight: 500;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--c-primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  font-family: var(--font-body);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--c-deep); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--c-deep);
  border-color: var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-accent {
  background: var(--c-accent);
  color: white;
}
.btn-accent:hover { background: #299cc4; color: white; transform: translateY(-1px); }

/* burger */
.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-deep);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ===========================================================
   Hero (asimétrico, ilustración + texto)
   =========================================================== */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(63,182,221,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(10,77,104,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--c-sand) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 3px rgba(31,138,91,0.18);
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--c-primary), var(--c-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--c-deep);
  font-size: .9rem;
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--c-accent); }

/* hero illustration card */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-deep) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-art .waves {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(600px 300px at 80% 80%, rgba(63,182,221,0.35), transparent 60%);
}
.hero-art svg.illu { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-floating {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--c-deep);
}
.hero-float-1 { left: -18px; top: 18%; }
.hero-float-2 { right: -18px; bottom: 14%; }
.hero-floating .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  display: grid; place-items: center;
}
.hero-floating .ico svg { width: 18px; height: 18px; }
.hero-floating b { display:block; color: var(--c-deep); font-weight: 700; }
.hero-floating span { color: var(--c-muted); font-size: .78rem; }

/* ===========================================================
   Trust strip
   =========================================================== */
.trust {
  background: var(--c-deep);
  padding: 22px 0;
  color: rgba(255,255,255,.85);
}
.trust .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust .item { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.trust svg { width: 18px; height: 18px; color: var(--c-accent); }

/* ===========================================================
   Section heading
   =========================================================== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .tag {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.section-head p { font-size: 1.05rem; }

/* ===========================================================
   Excursiones / Cards
   =========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(63,182,221,0.5);
}
.card .media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  overflow: hidden;
}
.card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .media img { transform: scale(1.06); }
.card .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--c-primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.card .badge.alt { background: var(--c-accent); color: white; }
.card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.card .meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  color: var(--c-muted); font-size: .85rem;
}
.card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.card .meta svg { width: 14px; height: 14px; color: var(--c-accent); }
.card .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 10px;
}
.card .price b { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-deep); }
.card .price small { color: var(--c-muted); font-size: .82rem; }
.card .footer {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.card .stars { color: #f5b301; font-size: .9rem; }
.card .stars span { color: var(--c-muted); margin-left: 6px; }

/* ===========================================================
   Cómo funciona (steps)
   =========================================================== */
.how {
  background: var(--c-sand);
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-line);
  position: relative;
}
.step .num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 1rem;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: .95rem; margin: 0; }

/* ===========================================================
   Tipos de pesca
   =========================================================== */
.types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.type {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  transition: border-color .2s ease, transform .2s ease;
}
.type:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.type .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-accent-soft);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.type .ico svg { width: 26px; height: 26px; }
.type h3 { margin-bottom: 6px; }
.type p { margin: 0; font-size: .95rem; }

/* ===========================================================
   Capitanes / sobre nosotros
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  background: linear-gradient(160deg, var(--c-accent) 0%, var(--c-primary) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.split .visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,40,61,0) 40%, rgba(6,40,61,0.45) 100%);
}
.split ul.benefits {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 12px;
}
.split ul.benefits li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--c-deep);
  font-weight: 500;
}
.split ul.benefits svg {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 2px;
  color: var(--c-success);
}

/* ===========================================================
   Testimonials
   =========================================================== */
.testimonials {
  background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-primary) 100%);
  color: white;
}
.testimonials .section-head h2 { color: white; }
.testimonials .section-head p { color: rgba(255,255,255,0.75); }
.testimonials .section-head .tag { color: var(--c-accent); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.t-card .stars { color: #f5b301; margin-bottom: 10px; }
.t-card p { color: rgba(255,255,255,0.92); font-size: .98rem; }
.t-card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px;
}
.t-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), #6fd2ee);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.t-card .who b { display: block; color: white; font-size: .95rem; }
.t-card .who span { color: rgba(255,255,255,0.6); font-size: .82rem; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
details.faq-item {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
details.faq-item[open] {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  color: var(--c-deep);
  font-family: var(--font-display);
  font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-primary);
  transition: transform .2s ease;
}
details.faq-item[open] summary::after { content: "−"; }
details.faq-item .faq-body { padding: 0 0 18px; color: var(--c-muted); }

/* ===========================================================
   CTA banner
   =========================================================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 56px;
  background: linear-gradient(120deg, var(--c-primary), var(--c-accent));
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-banner::after {
  content: "";
  position: absolute;
  left: -60px; bottom: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: white; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.cta-banner .btn-ghost {
  background: white;
  color: var(--c-primary);
  border-color: white;
}
.cta-banner .btn-ghost:hover { background: var(--c-deep); color: white; border-color: var(--c-deep); }

/* ===========================================================
   Contact form
   =========================================================== */
.form-card {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--c-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-text);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(63,182,221,0.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-sand);
}
.info-row .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: white;
  color: var(--c-primary);
  display: grid; place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--c-line);
}
.info-row .ico svg { width: 20px; height: 20px; }
.info-row b { color: var(--c-deep); display: block; }
.info-row span { color: var(--c-muted); font-size: .92rem; }
.form-success {
  display: none;
  padding: 16px 18px;
  background: rgba(31,138,91,0.1);
  border: 1px solid rgba(31,138,91,0.3);
  color: var(--c-success);
  border-radius: 12px;
  margin-top: 14px;
}
.form-success.show { display: block; }

/* ===========================================================
   Footer
   =========================================================== */
footer.site-footer {
  background: var(--c-deep);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: white;
  font-size: .95rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.7); font-size: .92rem; }
.footer-grid a:hover { color: white; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: .92rem; }
.footer-grid .brand { color: white; }
.footer-grid .brand b { color: var(--c-accent); }

.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: white;
  transition: background .2s ease;
}
.socials a:hover { background: var(--c-accent); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ===========================================================
   Página excursiones (filtros + grid completo)
   =========================================================== */
.page-header {
  background: linear-gradient(160deg, #ffffff 0%, var(--c-sand) 100%);
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--c-line);
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 640px; }
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: white;
  color: var(--c-deep);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover { border-color: var(--c-accent); }
.filter-btn.active {
  background: var(--c-primary);
  color: white;
  border-color: var(--c-primary);
}
.no-results {
  display: none;
  text-align: center;
  padding: 48px 0;
  color: var(--c-muted);
}
.no-results.show { display: block; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 480px; margin: 0 auto; }
  .cards, .types, .t-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 32px; }
  .cta-banner-grid { grid-template-columns: 1fr; text-align: left; }
  .cta-banner .actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 16px; right: 16px;
    background: white;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
    border: 1px solid var(--c-line);
  }
  .burger { display: inline-block; }
  .nav-cta { display: none; }
  .cards, .types, .t-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-floating { display: none; }
  .cta-banner { padding: 32px 24px; }
  section { padding: 56px 0; }
  .hero { padding: 48px 0 64px; }
}

/* utilities */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
