/* ============================================================
   CORBETT FUN ZONE – Global Styles
   Font: Poppins | Framework: Bootstrap 5
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --pink:      #f26836;
  --pink-dark: #b5156d;
  --blue:      #1a3fa8;
  --cyan:      #4f6ab2;
  --yellow:    #f5c518;
  --orange:    #f97316;
  --dark:      #0b0d1a;
  --darker:    #07080f;
  --card-bg:   #10121f;
  --light-bg:  #f4f6fb;
  --text-muted-custom: #7a8194;
  --radius:    14px;
  --shadow:    0 8px 32px rgba(0,0,0,0.18);
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin-bottom: 14px;
}
.section-title .c-pink  { color: var(--pink); }
.section-title .c-cyan  { color: var(--cyan); }
.section-title .c-blue  { color: var(--blue); }
.section-title .c-orange{ color: var(--orange); }
.section-desc {
  font-size: 15px;
  color: var(--text-muted-custom);
  line-height: 1.8;
}

/* ── Buttons ── */
.btn-pink {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-pink:hover { background: var(--pink-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,0.35); }

.btn-outline-pink {
  border: 2px solid var(--pink);
  color: var(--pink);
  border-radius: 50px;
  padding: 11px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-outline-pink:hover { background: var(--pink); color: #fff; }

.btn-cyan {
  background: var(--cyan);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cyan:hover { opacity: 0.85; color: #fff; transform: translateY(-2px); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-orange:hover { opacity: 0.9; color: #fff; transform: translateY(-2px); }

/* ── TOP BAR ── */
.topbar {
  background: var(--pink);
  padding: 8px 0;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.topbar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--pink); }
.topbar .divider { color: rgba(255,255,255,0.25); margin: 0 10px; }
.topbar-social a {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
  margin-left: 5px;
}
.topbar-social a:hover { background: var(--pink); color: #fff; }

/* ── NAVBAR ── */
.navbar-main {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--pink);
}
.navbar-main .navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  padding: 10px 0;
}
.brand-corbett { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); }
.brand-name { font-size: 22px; font-weight: 800; color: #111; line-height: 1; }
.brand-name .fun  { color: var(--pink); }
.brand-name .zone { color: var(--cyan); }
.brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--orange); text-transform: uppercase; }

.navbar-main .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #333 !important;
  padding: 28px 14px !important;
  position: relative;
  transition: color 0.2s;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--pink);
  transition: left 0.3s, right 0.3s;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--pink) !important; }
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { left: 0; right: 0; }
.navbar-main .nav-book {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  margin-left: 8px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.navbar-main .nav-book::after { display: none !important; }
.navbar-main .nav-book:hover { background: var(--pink-dark) !important; transform: scale(1.04); }

/* ── HERO ── */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,8,15,0.88) 45%, rgba(7,8,15,0.4));
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .ht-pink { color: var(--pink); }
.hero-title .ht-cyan { color: var(--cyan); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ── STAT CARDS ── */
.stat-strip {
  background: var(--dark);
  padding: 30px 0;
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ── CARDS ── */
.park-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 480px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.park-card:hover { transform: translateY(-8px); }
.park-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.park-card:hover img { transform: scale(1.06); }
.park-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 25%, rgba(0,0,0,0.05));
  z-index: 1;
}
.park-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 28px; }
.park-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 4px; margin-bottom: 10px;
}
.park-badge-pink { background: var(--pink); color: #fff; }
.park-badge-blue { background: var(--blue); color: #fff; }
.park-info h3 { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.park-info p  { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; margin-bottom: 14px; }
.park-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.park-tags span { background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: #fff; }
.park-phone { font-size: 13px; font-weight: 700; color: var(--yellow); }

/* ── ACTIVITY CARDS ── */
.act-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.act-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(233,30,140,0.18); }
.act-img-wrap { height: 110px; overflow: hidden; background: #eee; }
.act-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.act-card:hover .act-img-wrap img { transform: scale(1.1); }
.act-name {
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 6px;
  text-align: center;
}

/* ── SECTION BACKGROUNDS ── */
.bg-dark-custom { background: var(--dark); color: #fff; }
.bg-dark-custom .section-title { color: #fff; }
.bg-dark-custom .section-desc  { color: rgba(255,255,255,0.65); }

.bg-light-custom { background: var(--light-bg); }

.bg-darker { background: var(--darker); color: #fff; }
.bg-darker .section-title { color: #fff; }

/* ── INFO STRIP ── */
.info-strip { background: var(--blue); padding: 18px 0; }
.info-strip .strip-item { display: flex; align-items: center; gap: 12px; }
.info-strip .si-icon { font-size: 26px; }
.info-strip .si-title { font-size: 13.5px; font-weight: 700; color: #fff; }
.info-strip .si-sub   { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ── ACTIVITIES TAB FILTER ── */
.act-filter-btn {
  background: #fff;
  border: 1.5px solid #ddd;
  color: #555;
  border-radius: 50px;
  padding: 8px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.act-filter-btn.active, .act-filter-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* ── GALLERY GRID ── */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(233,30,140,0.2);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── TESTIMONIAL CARDS ── */
.test-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}
.test-card:hover { box-shadow: 0 12px 40px rgba(233,30,140,0.15); transform: translateY(-4px); }
.test-stars { color: var(--yellow); font-size: 17px; margin-bottom: 12px; }
.test-text { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.test-author-name { font-size: 15px; font-weight: 700; color: #111; }
.test-author-loc  { font-size: 12px; color: var(--text-muted-custom); }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff; flex-shrink: 0;
}

/* ── CONTACT FORM ── */
.contact-form .form-control,
.contact-form .form-select {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
  outline: none;
}
.contact-form label { font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
.info-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--pink);
  margin-bottom: 20px;
}
.info-card .ic-icon { font-size: 28px; margin-right: 14px; }
.info-card strong { font-size: 14px; font-weight: 700; display: block; color: #111; }
.info-card span   { font-size: 13px; color: var(--text-muted-custom); }
.info-card .ic-phone { font-size: 13px; font-weight: 700; color: var(--pink); display: block; margin-top: 4px; }

/* ── ABOUT PAGE ── */
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; display: block; }
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border: 3px solid var(--pink);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  z-index: -1;
}
.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--pink);
  text-align: center;
  transition: transform 0.3s;
}
.feature-box:hover { transform: translateY(-4px); }
.feature-box .fb-icon { font-size: 36px; margin-bottom: 10px; }
.feature-box h5 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-box p { font-size: 12px; color: var(--text-muted-custom); margin: 0; }

/* ── TICKETS PAGE ── */
.ticket-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  border: 2px solid #eee;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.ticket-card:hover, .ticket-card.featured {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(233,30,140,0.15);
}
.ticket-card.featured { position: relative; }
.ticket-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 18px; border-radius: 20px;
}
.ticket-icon { font-size: 42px; margin-bottom: 14px; }
.ticket-name { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 6px; }
.ticket-price { font-size: 52px; font-weight: 800; color: var(--pink); line-height: 1; }
.ticket-price sup { font-size: 22px; vertical-align: super; }
.ticket-per { font-size: 12px; color: var(--text-muted-custom); margin-bottom: 24px; }
.ticket-features { list-style: none; padding: 0; margin-bottom: 28px; text-align: left; }
.ticket-features li {
  font-size: 13.5px; padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex; align-items: center; gap: 10px;
  color: #444;
}
.ticket-features li::before { content: '✓'; color: var(--pink); font-weight: 800; }

/* ── BLOG PAGE ── */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.blog-img-wrap { height: 210px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-body { padding: 22px; }
.blog-date { font-size: 11px; font-weight: 700; color: var(--pink); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text-muted-custom); line-height: 1.7; }
.blog-link { font-size: 13px; font-weight: 700; color: var(--pink); text-decoration: none; }
.blog-link:hover { text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1040 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #fff; }
.page-hero .breadcrumb { background: transparent; padding: 0; }
.page-hero .breadcrumb-item a { color: var(--pink); text-decoration: none; font-size: 13px; font-weight: 600; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); font-size: 13px; }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before { content: '🎡'; position: absolute; font-size: 260px; opacity: 0.05; right: -30px; bottom: -50px; }
.cta-section h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
  border-top: 3px solid var(--pink);
}
footer .footer-logo-name { font-size: 24px; font-weight: 800; color: #fff; }
footer .footer-logo-name .fun  { color: var(--pink); }
footer .footer-logo-name .zone { color: var(--cyan); }
footer h5 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
footer ul a:hover { color: var(--pink); }
footer p { font-size: 13.5px; line-height: 1.8; }
.footer-social a {
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: 14px;
  transition: background 0.2s;
  margin-right: 6px;
}
.footer-social a:hover { background: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--pink); text-decoration: none; }
.br-partner {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  font-size: 12.5px;
}
a.navbar-brand img {
    max-width: 100px;
}
/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25D366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none;
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
  z-index: 9999;
  animation: wapulse 2.2s infinite;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.12); color: #fff; }
@keyframes wapulse {
  0%,100%{ box-shadow: 0 6px 22px rgba(37,211,102,0.55); }
  50%    { box-shadow: 0 6px 44px rgba(37,211,102,0.9); }
}

/* ── Animate on scroll ── */
.aos-item { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.aos-item.visible { opacity: 1; transform: translateY(0); }
.aos-item.delay-1 { transition-delay: 0.1s; }
.aos-item.delay-2 { transition-delay: 0.2s; }
.aos-item.delay-3 { transition-delay: 0.3s; }
.aos-item.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .topbar .topbar-right { display: none; }
  .navbar-main .nav-link { padding: 12px 14px !important; }
  .navbar-main .nav-link::after { display: none; }
  .hero-section { min-height: 70vh; background-attachment: scroll; }
  .park-card { height: 380px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; margin-bottom: 16px; }
  .stat-item:last-child { border-bottom: none; }
  .info-strip .strip-item { justify-content: center; text-align: center; }
}
