/* ─────────────────────────────────────────────────────────
   VARIABLES
───────────────────────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --off:        #F6F8FB;
  --navy:       #1A2E4A;
  --navy-lt:    #243C5E;
  --slate:      #4A5568;
  --muted:      #718096;
  --border:     #E2E8F0;
  --gold:       #F6C543;
  --sky:        #3B9FE8;
  --teal:       #00B894;
  --coral:      #E55B4D;
  --light:      #EEF4FF;
  --shadow:     0 2px 16px rgba(26, 46, 74, 0.08);
  --shadow-md:  0 6px 28px rgba(26, 46, 74, 0.12);
  --r:          10px;
  --font-h:     'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-b:     'Segoe UI', system-ui, -apple-system, sans-serif;
  --box-shadow-1: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-2: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-3: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

/* ─────────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--off);
  color: var(--navy);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ─────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 24px;
  box-shadow: 0 2px 10px rgba(26, 46, 74, 0.06);
}

/* ─────────────────────────────────────────────────────────
   LOGO
───────────────────────────────────────────────────────── */
.logo {
  max-width: 120px;
}

.logo a {
  display: flex;
}

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin-left: auto;
  margin-bottom: 0;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.18s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--light);
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────
   MOBILE TOGGLE
───────────────────────────────────────────────────────── */
.nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: background 0.18s;
}

/* ─────────────────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────────────────── */
#mobile-menu {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 62px;
  z-index: 199;
}

.mobile-menu-inner ul {
  list-style: none;
  padding: 8px 16px 12px;
  margin: 0;
}

.mobile-menu-inner ul li a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-inner ul li:last-child a {
  border-bottom: none;
}

.mobile-menu-inner ul li a:hover {
  color: var(--sky);
}

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #1A2E4A 0%, #1E3D60 45%, #2A5580 80%, #3168A0 100%);
  padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hdc1 { width: 500px; height: 500px; right: -100px; top: -150px; }
.hdc2 { width: 280px; height: 280px; right: 120px; top: -40px; }
.hdc3 { width: 160px; height: 160px; right: 240px; top: 80px; background: rgba(246, 197, 67, 0.06); }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-inner { text-align: center; }
  .hero-desc { margin: 28px auto;}
  .hero-search { margin: 0 auto 24px; }
  .cat-pills { justify-content: center; }
  .hero-right { display: none; }
}

.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.h-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.hero h1 .atl { color: var(--gold); }

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin-bottom: 28px;
}

/* Hero search */
.hero-search {
  max-width: 540px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 15px 20px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.hero-search input::placeholder { color: #9CA3AF; }

.hero-search button {
  background: var(--sky);
  border: none;
  cursor: pointer;
  height: 60px;
  padding: 14px 26px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: background 0.18s;
  white-space: nowrap;
}

.hero-search button:hover { background: #2e8fd4; }

@media (max-width: 768px) {
  .hero-search {
    flex-direction: column;
    padding: 6px;
  }
  .hero-search input {
    padding: 15px 10px;
  }
  .hero-search button {
    height: auto;
    padding: 15px 26px;
    width: 100%;
    border-radius: 9px;
  }
}


/* Category pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 7px; }

.cpill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}

.cpill:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero right quick-cards */
.hero-right { display: flex; flex-direction: column; gap: 10px; }

.hqcard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.hqcard:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.hqcard-icon { font-size: 24px; width: 40px; text-align: center; flex-shrink: 0; }
.hqcard-name { font-size: 14px; font-weight: 700; color: white; line-height: 1.3; display: block; }
.hqcard-sub { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; font-weight: 500; display: block; }
.hqcard-arr { margin-left: auto; color: rgba(255, 255, 255, 0.4); font-size: 14px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────────────────── */
.trust {
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.ti {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-right: 1px solid var(--border);
}

.ti:last-child { border-right: none; }
.ti-icon { font-size: 18px; }
.ti-text { font-size: 13px; font-weight: 600; color: var(--muted); }
.ti-text strong { color: var(--navy); }

/* ─────────────────────────────────────────────────────────
   PAGE CONTENT
───────────────────────────────────────────────────────── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px clamp(16px, 4vw, 48px) 60px;
}

/* ─────────────────────────────────────────────────────────
   SECTION
───────────────────────────────────────────────────────── */
.section { margin-bottom: 44px; }

.section-head {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-left { display: flex; align-items: center; gap: 12px; }

.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.section-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 500; }

.see-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  transition: all 0.18s;
}

.see-all:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ─────────────────────────────────────────────────────────
   LINK GRID / LCARD
───────────────────────────────────────────────────────── */
.link-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.lcard {
  flex: 0 0 calc(25% - 8px) !important;
  max-width: calc(25% - 8px) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 13px 15px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  position: relative;
}

.lcard::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sky);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.2s;
}

.lcard:hover {
  border-color: rgba(59, 159, 232, 0.35) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-2px) !important;
}

.lcard:hover::after { transform: scaleY(1); }

.lcard-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  background: var(--off) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  flex-shrink: 0 !important;
  transition: background 0.2s;
}

.lcard:hover .lcard-icon { background: var(--light) !important; }

.lcard > span {
  min-width: 0 !important;
  overflow: hidden !important;
}

.lcard-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

.lcard-meta {
  font-size: 11px !important;
  color: var(--muted) !important;
  margin-top: 2px !important;
  font-weight: 500 !important;
  display: block !important;
}

.lcard-arr {
  font-size: 12px !important;
  color: var(--border) !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  transition: all 0.2s;
}

.lcard:hover .lcard-arr { color: var(--sky) !important; }

@media (max-width: 900px) {
  .lcard {
    flex: 0 0 calc(33.33% - 7px) !important;
    max-width: calc(33.33% - 7px) !important;
  }
}

@media (max-width: 600px) {
  .link-grid {
    flex-direction: column;
  }
  .lcard {
    /*flex: 0 0 calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important; */
    max-width: 100% !important;
  }
}

/* ─────────────────────────────────────────────────────────
   ALL CATEGORIES GRID
───────────────────────────────────────────────────────── */
.all-cats-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 44px;
}

.all-cats-title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.all-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}

.acat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  text-decoration: none;
  transition: all 0.18s;
}

.acat:hover {
  background: var(--light);
  border-color: var(--sky);
  color: var(--navy);
}

.acat-icon { font-size: 18px; flex-shrink: 0; }
.acat-name { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.2; display: block; }
.acat-count { font-size: 11px; color: var(--muted); font-weight: 500; display: block; }

/* ─────────────────────────────────────────────────────────
   FEATURED GUIDES
───────────────────────────────────────────────────────── */
.featured-guides { margin-top: 16px; margin-bottom: 0; }

.featured-guides-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.feat-hero {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.18s;
  justify-content: flex-start;
}

.feat-hero:hover { background: #FAFBFF; }

.feat-hero-badge {
  display: inline-flex;
  background: #FFF8EC;
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #B8860B;
  margin-bottom: 12px;
  width: fit-content;
}

.feat-hero-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.feat-hero-title {
  display: block;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feat-hero-desc {
  display: block;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feat-read-more { margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--sky); display: block; }

.feat-side { display: flex; flex-direction: column; }

.feat-side-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.18s;
  display: block;
}

.feat-side-item:last-child { border-bottom: none; }
.feat-side-item:hover { background: var(--off); }

.feat-side-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.feat-side-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 3px; display: block; }
.feat-side-desc { font-size: 11px; color: #9CA3AF; display: block; }

@media (max-width: 768px) {
  .featured-guides-inner {
    display: flex;
    flex-direction: column;
  }
  .feat-hero {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ─────────────────────────────────────────────────────────
   CONTENT BLOCK
───────────────────────────────────────────────────────── */
.content-block {
  background: white;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 40px 48px 36px;
  margin: 44px auto;
  text-align: center;
  max-width: 860px;
}

.content-block h2 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.content-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 14px;
  font-weight: 400;
}

.content-block p:last-child { margin-bottom: 0; }

.content-block .cb-disclaimer {
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.7;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cb-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--navy);
  color: white !important;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.18s;
}

.cb-cta:hover { background: var(--navy-lt); }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.45);
  padding: 24px clamp(16px, 4vw, 48px);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a { color: var(--gold); text-decoration: none; }

.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────── */
.hero-inner > * { opacity: 1; }
.lcard { opacity: 1; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .all-cats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .all-cats-grid { grid-template-columns: repeat(1, 1fr); }
  .ti { padding: 12px 16px; }
}

/* ═══════════════════════════════════════════════════════
   LAYOUT RESET
═══════════════════════════════════════════════════════ */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* ═══════════════════════════════════════════════════════
   FONTS RESET
═══════════════════════════════════════════════════════ */
.pages h1,
.pages h2 {
  font-weight: 700;
  color: var(--navy);
}

.pages h1,
.pages h2,
.pages h3,
.pages p,
.pages strong {
  color: var(--navy);
}

.pages h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pages h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.pages h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.pages p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pages strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════════════════════════
   TABLE RESET
═══════════════════════════════════════════════════════ */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--slate) !important;
}

table th {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--off) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px 0;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px 0;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════════════════════════
   CONTACT US FORM
═══════════════════════════════════════════════════════ */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--bs-gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--navy);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--sky);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--bs-gray-600);
}

#contact-form button {
  background: var(--sky);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--navy);
}

/* ═══════════════════════════════════════════════════════
           WIDGETS
═══════════════════════════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--bs-gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--navy);
  background: var(--light);
  border-color: var(--sky);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--navy-lt);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%233B9FE8'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-2);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  color: var(--sky);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
