/* =========================================================
   CELESTIAL KIDS — Design Tokens
   Display: Baloo 2 (bubbly, hand-drawn-lettering echo)
   Body:    Quicksand (soft, rounded, easy to read)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

:root{
  --blush:        #FFE3EE;
  --blush-deep:   #FFD0E6;
  --plum:         #6B2464;
  --plum-deep:    #4E1749;
  --violet:       #9B4FA6;
  --gold:         #F2A93C;
  --gold-deep:    #E08A1E;
  --comet:        #4C8FD1;
  --mint:         #4FB6A6;
  --cream:        #FFF9F2;
  --ink:          #3A1F3D;
  --white:        #FFFFFF;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body:    'Quicksand', system-ui, sans-serif;

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-soft: 0 12px 30px rgba(107,36,100,0.12);
  --shadow-pop:  0 18px 40px rgba(107,36,100,0.18);

  --container: 1140px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--blush);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--plum);
  margin: 0 0 .5em;
  line-height: 1.15;
}

h1{ font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; }
h3{ font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }

p{ margin: 0 0 1em; }

a{ color: inherit; text-decoration: none; }

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

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

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--violet);
  background: rgba(155,79,166,0.1);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 14px;
}
.eyebrow::before{ content: "✦"; color: var(--gold); }

/* =========================================================
   AMBIENT BACKGROUND — drifting planets & twinkling stars
   Echoes the logo's ring-of-planets motif at low opacity
   ========================================================= */
.cosmic-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cosmic-bg .star{
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .55;
  animation: twinkle 3.4s ease-in-out infinite;
}
.cosmic-bg .star::after{
  content:"";
  position:absolute; inset:-3px;
  background: inherit;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .6;
}

.cosmic-bg .planet{
  position: absolute;
  border-radius: 50%;
  opacity: .5;
  filter: blur(.2px);
  animation: drift 22s ease-in-out infinite;
}

.cosmic-bg .planet.p1{ width:70px; height:70px; top:8%; left:6%; background: radial-gradient(circle at 32% 28%, #F6C36B, var(--gold-deep)); animation-duration: 26s; }
.cosmic-bg .planet.p2{ width:38px; height:38px; top:65%; left:3%; background: radial-gradient(circle at 32% 28%, #8FD3C8, var(--mint)); animation-duration: 19s; animation-delay: -4s; }
.cosmic-bg .planet.p3{ width:54px; height:54px; top:20%; right:8%; background: radial-gradient(circle at 32% 28%, #C79EDC, var(--violet)); animation-duration: 24s; animation-delay: -8s; }
.cosmic-bg .planet.p4{ width:30px; height:30px; top:80%; right:12%; background: radial-gradient(circle at 32% 28%, #9FC2ED, var(--comet)); animation-duration: 17s; animation-delay: -2s; }
.cosmic-bg .planet.p5{ width:22px; height:22px; top:42%; left:48%; background: radial-gradient(circle at 32% 28%, #F5A6C7, #E0629A); animation-duration: 21s; animation-delay: -11s; opacity:.35; }

@keyframes twinkle{
  0%,100%{ opacity:.2; transform: scale(.8); }
  50%{ opacity: .9; transform: scale(1.3); }
}
@keyframes drift{
  0%{ transform: translate(0,0) rotate(0deg); }
  50%{ transform: translate(18px,-22px) rotate(8deg); }
  100%{ transform: translate(0,0) rotate(0deg); }
}

/* =========================================================
   SIGNATURE ELEMENT — the Orbit Badge
   A dashed ring with small satellite dots, echoing the logo's
   circular arrangement of planets around the angel mascot.
   ========================================================= */
.orbit-badge{
  position: relative;
  width: var(--obadge-size, 120px);
  height: var(--obadge-size, 120px);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink: 0;
}
.orbit-badge::before{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  border: 2px dashed rgba(155,79,166,0.45);
  animation: spin 30s linear infinite;
}
.orbit-badge .obadge-dot{
  position:absolute;
  width: 10px; height:10px;
  border-radius:50%;
  top: -5px; left: 50%;
  transform-origin: 5px calc(var(--obadge-size, 120px) / 2 + 5px);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,169,60,0.18);
  animation: spin 30s linear infinite;
}
.orbit-badge .obadge-dot.d2{ background: var(--comet); animation-duration: 22s; animation-direction: reverse; }
.orbit-badge .obadge-icon{
  font-size: calc(var(--obadge-size, 120px) * .38);
  z-index: 1;
}
.orbit-badge .obadge-img{
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
}
@keyframes spin{ from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,227,238,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(107,36,100,0.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 24px;
  gap: 16px;
}
.logo-link{ display:flex; align-items:center; gap:10px; }
.logo-img{
  width: 54px; height:54px;
  border-radius:50%;
  object-fit:cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.logo-wordmark{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--plum);
}
.logo-wordmark span{ color: var(--violet); }

.main-nav{
  display:flex;
  align-items:center;
  gap: 6px;
}
.main-nav a{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--plum);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover{ background: rgba(107,36,100,0.08); transform: translateY(-1px); }
.main-nav a.active{ background: var(--plum); color: var(--white); }
.main-nav a.nav-cta{
  background: var(--gold);
  color: var(--plum-deep);
  margin-left: 6px;
}
.main-nav a.nav-cta:hover{ background: var(--gold-deep); color:var(--white); }

.nav-toggle{
  display:none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--plum);
  cursor: pointer;
}

@media (max-width: 880px){
  .nav-toggle{ display:block; }
  .main-nav{
    position: absolute;
    top: 100%; left:0; right:0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    box-shadow: var(--shadow-soft);
    display: none;
    gap: 4px;
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ text-align:center; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary{
  background: var(--plum);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: var(--shadow-pop); background: var(--plum-deep); }
.btn-secondary{
  background: var(--white);
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-secondary:hover{ background: var(--plum); color: var(--white); transform: translateY(-3px); }
.btn-gold{
  background: var(--gold);
  color: var(--plum-deep);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover{ background: var(--gold-deep); color: var(--white); transform: translateY(-3px); }

/* =========================================================
   SECTIONS / LAYOUT
   ========================================================= */
main{ position: relative; z-index: 1; }

.section{ padding: 90px 0; position: relative; }
.section-tight{ padding: 60px 0; }
.section-alt{ background: var(--cream); }
.section-plum{ background: var(--plum); color: var(--blush); }
.section-plum h2, .section-plum h3{ color: var(--white); }

.text-center{ text-align:center; }
.max-w{ max-width: 680px; margin-left:auto; margin-right:auto; }

/* Hero */
.hero{
  padding: 70px 0 100px;
  position: relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items:center;
}
.hero h1{ position:relative; }
.hero h1 .swirl{
  position:absolute;
  bottom: -6px; left:0;
  width: 100%;
  height: 14px;
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 30px; }
.hero-chips{
  display:flex; flex-wrap:wrap; gap: 10px; margin-top: 36px;
}
.chip{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  background: var(--white);
  color: var(--plum);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero-visual{
  --obadge-size: 380px;
  margin: 0 auto;
  position: relative;
}
.hero-visual .float-chip{
  position:absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-pop);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--plum);
  display:flex; align-items:center; gap:8px;
  animation: bob 5s ease-in-out infinite;
}
.hero-visual .fc1{ top: 6%; left: -8%; animation-delay: 0s; }
.hero-visual .fc2{ bottom: 12%; right: -10%; animation-delay: -2s; }
.hero-visual .fc3{ bottom: -4%; left: 6%; animation-delay: -3.5s; }
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ --obadge-size: 280px; order:-1; }
  .hero-visual .float-chip{ display:none; }
}

/* Card grids */
.grid{ display:grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 880px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-pop); }

.card .orbit-badge{ --obadge-size: 84px; margin-bottom: 18px; }

.section-head{
  max-width: 640px;
  margin: 0 auto 50px;
  text-align:center;
}

.photo-frame{ cursor: pointer; }

/* Lightbox */
.lightbox-overlay{
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(58,31,61,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox-overlay.active{ opacity: 1; pointer-events: auto; }
.lightbox-overlay img{
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  border: 5px solid var(--white);
  display:block;
}
.lightbox-close{
  position: absolute;
  top: 22px; right: 26px;
  width: 46px; height:46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--plum);
  font-size: 1.5rem;
  line-height:1;
  cursor: pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, background .2s ease;
}
.lightbox-close:hover{ transform: scale(1.08) rotate(90deg); background: var(--gold); }

/* Photo frame with dashed corner accent (gallery / about) */
.photo-frame{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.photo-frame img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.photo-frame:hover img{ transform: scale(1.06); }
.photo-frame .frame-tag{
  position:absolute; bottom:14px; left:14px;
  background: rgba(255,255,255,0.92);
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Testimonial slider */
.testimonial-slider{
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 56px;
}
.slider-track{
  position: relative;
  min-height: 260px;
}
.slider-slide{
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.slider-slide.active{
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.slider-slide .quote-card{ margin: 0; text-align:center; min-height: 220px; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.slider-slide .quote-mark{ display:block; }
.slider-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius:50%;
  border: none;
  background: var(--white);
  color: var(--plum);
  font-size: 1.6rem;
  cursor:pointer;
  box-shadow: var(--shadow-soft);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index: 2;
}
.slider-arrow:hover{ background: var(--plum); color: var(--white); transform: translateY(-50%) scale(1.08); }
.slider-prev{ left: 0; }
.slider-next{ right: 0; }
.slider-dots{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 8px;
  margin-top: 22px;
}
.slider-dots button{
  width: 10px; height:10px;
  border-radius: 50%;
  border: none;
  background: var(--blush-deep);
  cursor:pointer;
  padding:0;
  transition: background .2s ease, transform .2s ease;
}
.slider-dots button.active{ background: var(--violet); transform: scale(1.3); }

@media (max-width: 620px){
  .testimonial-slider{ padding: 0 44px; max-width: 100%; }
  .slider-arrow{ width:38px; height:38px; font-size:1.3rem; }
}

/* Gallery filter bar */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  margin-bottom: 40px;
}
.filter-chip{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  background: var(--white);
  color: var(--plum);
  border: 2px solid var(--blush-deep);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.filter-chip:hover{ transform: translateY(-2px); border-color: var(--violet); }
.filter-chip.active{
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
}
.photo-frame.is-hidden{ display:none; }

/* Wavy section divider */
.wave-divider{
  display:block;
  width:100%;
  line-height:0;
}
.wave-divider svg{ width:100%; height:70px; display:block; }

/* Testimonial / quote card */
.quote-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.quote-card .quote-mark{
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: .5;
  display:block;
  margin-bottom: 10px;
}
.quote-card .quote-name{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--violet);
  margin-top: 14px;
  display:block;
}

/* FAQ Accordion */
.accordion-item{
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.accordion-q{
  width:100%;
  text-align:left;
  background: none;
  border: none;
  padding: 22px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--plum);
  cursor:pointer;
}
.accordion-q .qdot{
  flex-shrink:0;
  width: 26px; height:26px;
  border-radius:50%;
  background: var(--blush);
  color: var(--violet);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.1rem;
  transition: transform .3s ease, background .3s ease;
}
.accordion-item.open .accordion-q .qdot{ transform: rotate(135deg); background: var(--gold); color:var(--plum-deep); }
.accordion-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .35s ease;
  padding: 0 26px;
}
.accordion-a p{ padding-bottom: 22px; color: var(--ink); opacity:.85; }
.accordion-item.open .accordion-a{ max-height: 400px; }

/* Contact page */
.info-row{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  margin-bottom: 26px;
}
.info-row .orbit-badge{ --obadge-size:52px; flex-shrink:0; }
.info-row .obadge-icon{ font-size: 1.4rem; }
.info-row h4{ margin:0 0 4px; color: var(--plum); font-family: var(--font-display); }
.info-row p{ margin:0; opacity:.85; }

.hours-table{
  width:100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.hours-table td{
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  border-bottom: 1px solid var(--blush);
}
.hours-table tr:last-child td{ border-bottom:none; }
.hours-table td:first-child{ color: var(--plum); font-family: var(--font-display); }
.hours-table tr.closed td:last-child{ color: var(--violet); font-weight:700; }

.map-wrap{
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  line-height:0;
}
.map-wrap iframe{ width:100%; height: 100%; min-height: 320px; border:0; }
.map-wrap.map-full-bleed{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-shadow: none;
}
.map-wrap.map-full-bleed iframe{ min-height: 460px; }
@media (max-width: 700px){
  .map-wrap.map-full-bleed iframe{ min-height: 340px; }
}

.form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom: 18px; }
.field label{
  display:block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--plum);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blush-deep);
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--violet);
}
.field textarea{ resize: vertical; min-height: 110px; }

/* CTA band */
.cta-band{
  background: linear-gradient(120deg, var(--plum), var(--violet));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align:center;
  color: var(--white);
  position:relative;
  overflow:hidden;
}
.cta-band h2{ color: var(--white); }
.cta-band p{ color: rgba(255,255,255,0.85); }

/* Footer */
.site-footer{
  background: var(--plum-deep);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 0;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.footer-grid{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand{
  display:flex;
  flex-direction:column;
  gap:12px;
  flex: 1 1 260px;
  max-width: 320px;
}
.footer-col{
  flex: 0 1 160px;
}
.footer-col:nth-child(3){ flex-basis: 240px; }
@media (max-width: 780px){
  .footer-grid{ gap: 32px 24px; }
  .footer-brand{ flex-basis: 100%; max-width: none; }
}
.footer-logo{ width:56px; height:56px; border-radius:50%; border:3px solid rgba(255,255,255,.25); }
.footer-col h4{ color: var(--gold); font-family:var(--font-display); font-size:1rem; margin-bottom:14px; }
.footer-col a, .footer-col p{ display:block; margin-bottom:10px; color: rgba(255,255,255,0.78); font-size:.94rem; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  text-align:center;
  padding: 22px 0;
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
}

/* Reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform:none; }

/* Page hero (inner pages) */
.page-hero{
  padding: 60px 0 50px;
  text-align:center;
  position:relative;
}
.page-hero .orbit-badge{
  --obadge-size:96px;
  margin: 0 auto 18px;
}

/* Utility */
.mt-0{ margin-top:0; }
.mb-0{ margin-bottom:0; }
