/* ==========================================================
   Kingdom Nexus — Explore Hubs (Minimal Premium Edition)
   Scope: #olc-explore-hubs
   Mobile-first. No Tailwind. Local Collective Colors.
   Atomic UX pass (chips carousel + cards + modals + randomizer)
   ========================================================== */

#olc-explore-hubs {
  --olc-green: #0b793a;
  --olc-green-600: #085b2c;
  --olc-amber: #d8991e;
  --olc-amber-soft: #ffe7bb;
  --olc-amber-strong: #c88412;

  --olc-bg: #ffffff;
  --olc-card: #ffffff;
  --olc-line: #ececec;
  --olc-text: #111;
  --olc-muted: #6b7280;

  --olc-radius-pill: 999px;
  --olc-radius-md: 12px;
  --olc-radius-lg: 16px;
  --olc-radius-xl: 22px;

  /* Shadows (more “Nexus”) */
  --olc-shadow-xs: 0 1px 6px rgba(15, 23, 42, 0.08);
  --olc-shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.12);
  --olc-shadow-md: 0 22px 70px rgba(0,0,0,0.28);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--olc-text);
  padding-top: 0;
}

#olc-explore-hubs main {
  max-width: 100%;
  margin: 0 auto;
}

/* ==========================================================
   HUB STRIP (Marketplace)
========================================================== */

#olc-explore-hubs .hub-strip-wrap {
  padding: 4px 0 0;
  background: #ffffff;
}

#olc-explore-hubs .hub-strip-wrap .carousel-dots {
  padding: 6px 0 0;
}

#olc-explore-hubs .hub-strip-head {
  padding: 24px 16px 12px;
}

#olc-explore-hubs .section-alt {
  background: #f8f9fb;
  margin-left: -16px;
  margin-right: -16px;
  padding: 6px 16px 10px;
}

#olc-explore-hubs .section-alt .carousel-dots {
  padding: 10px 0 0;
}

#olc-explore-hubs .hub-strip-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #1f2a44;
  line-height: 1.2;
}

#olc-explore-hubs .hub-strip-copy {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.35;
}

#olc-explore-hubs .calc-strip-wrap {
  padding: 0;
  margin-top: 4px;
}

#olc-explore-hubs .calc-strip-head {
  padding: 6px 16px 6px;
}

#olc-explore-hubs .calc-strip-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

#olc-explore-hubs .calc-strip-copy {
  margin: 0;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.35;
}

#olc-explore-hubs .calc-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
}

/* Scroll hint removed - dots provide navigation */

#olc-explore-hubs .calc-strip::-webkit-scrollbar {
  display: none;
}

#olc-explore-hubs .calc-strip {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#olc-explore-hubs .third-section-wrap {
  padding: 12px 16px 20px;
  min-height: 200px;
}

/* ==========================================================
   CAROUSEL STYLES (Modern SaaS Experience)
========================================================== */

#olc-explore-hubs .carousel-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
}

/* Scroll hint removed - dots provide navigation */

#olc-explore-hubs .carousel-container::-webkit-scrollbar {
  display: none;
}

#olc-explore-hubs .carousel-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#olc-explore-hubs .carousel-frame {
  position: relative;
}

#olc-explore-hubs .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  display: none; /* Hidden - dots provide navigation */
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  z-index: 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

#olc-explore-hubs .carousel-arrow--left {
  left: 6px;
}

#olc-explore-hubs .carousel-arrow--right {
  right: 6px;
}

#olc-explore-hubs .carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
  opacity: 1;
}

#olc-explore-hubs .carousel-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#olc-explore-hubs .carousel-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#olc-explore-hubs .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 0 0;
  margin: 0;
}

#olc-explore-hubs .carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d5dd;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

#olc-explore-hubs .carousel-dots .dot:hover {
  background: #9ca3af;
}

#olc-explore-hubs .carousel-dots .dot.active {
  background: #1f2a44;
  transform: scale(1.15);
}

/* Calculator Marketplace Section (when embedded in explore-hubs) */
#olc-explore-hubs .calculator-marketplace-section {
  padding: 24px 16px;
  margin: 0;
}

#olc-explore-hubs .calculator-marketplace-section .silva-calc-marketplace {
  padding: 0;
  margin: 0;
}

#olc-explore-hubs.knx-crm-marketplace .knx-footer {
  display: none !important;
}

#olc-explore-hubs .hub-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
}

#olc-explore-hubs .hub-strip::-webkit-scrollbar {
  display: none;
}

#olc-explore-hubs .hub-strip {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#olc-explore-hubs .hub-strip .hub-card {
  min-width: 200px;
  max-width: 220px;
  height: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

#olc-explore-hubs .hub-strip .hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#olc-explore-hubs.knx-crm-marketplace .hub-main-hours {
  display: none;
}

/* ==========================================================
   ANTI THEME INTRUSION (Hello Elementor)
   ========================================================== */

#olc-explore-hubs,
#olc-explore-hubs * {
  box-sizing: border-box;
}

#olc-explore-hubs a {
  color: inherit;
  text-decoration: none;
}

#olc-explore-hubs button,
#olc-explore-hubs input {
  font-family: inherit;
}

#olc-explore-hubs button {
  letter-spacing: normal;
  text-transform: none;
}

#olc-explore-hubs .btn,
#olc-explore-hubs .btn:focus,
#olc-explore-hubs .btn:hover,
#olc-explore-hubs .btn:active {
  text-decoration: none !important;
  outline: none !important;
}

/* ==========================================================
   UTILITIES
   ========================================================== */

#olc-explore-hubs .hidden { display: none !important; }

#olc-explore-hubs .scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#olc-explore-hubs .scrollbar-hide::-webkit-scrollbar { display: none; }

/* ==========================================================
   STICKY SEARCH (shadow + controlled colors)
   ========================================================== */

#olc-explore-hubs .search-sticky {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

#olc-explore-hubs .search-row { padding: 12px; }

#olc-explore-hubs .search-pill {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;

  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--olc-radius-pill);
  background: #ffffff;
  box-shadow: var(--olc-shadow-xs);
}

#olc-explore-hubs .search-pill:focus-within {
  border-color: rgba(216, 153, 30, 0.55);
  box-shadow: 0 0 0 4px rgba(216,153,30,0.14), var(--olc-shadow-xs);
}

#olc-explore-hubs .search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

#olc-explore-hubs .search-ico-right {
  font-size: 14px;
  color: #9ca3af;
}

/* ==========================================================
   MOOD CHIPS (Carousel redesign)
   - no emojis
   - less curve
   - strong shadows
   - theme-proof hover
   ========================================================== */

#olc-explore-hubs .mood-wrap {
  background: #ffffff;
  padding: 14px 8px;
}

#olc-explore-hubs .mood-inner {
  max-width: 940px;
  margin: 0 auto;
}

#olc-explore-hubs .mood-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 4px 2px 6px;
}

#olc-explore-hubs .knx-mood-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 14px;               /* reduced curve */
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);

  box-shadow: var(--olc-shadow-xs);
  cursor: pointer;
  white-space: nowrap;

  transition: none !important;       /* kill theme hover transitions */
  -webkit-tap-highlight-color: transparent;
}

#olc-explore-hubs .knx-mood-chip b {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

#olc-explore-hubs .knx-mood-chip:hover {
  background: #ffffff;               /* no hover color shifts */
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: var(--olc-shadow-xs);
  transform: none;
}

#olc-explore-hubs .knx-mood-chip:active {
  transform: translateY(1px);
}

#olc-explore-hubs .knx-mood-chip.active {
  background: rgba(11, 121, 58, 0.10);
  border-color: rgba(11, 121, 58, 0.35);
  box-shadow: 0 12px 22px rgba(11, 121, 58, 0.12);
}

#olc-explore-hubs .knx-mood-chip.active b {
  color: #0b5f2f;
}

/* ==========================================================
   SPOTLIGHTS
   ========================================================== */

#olc-explore-hubs .spot-wrap {
  padding: 20px 8px 20px;
  background: #fff;
}

#olc-explore-hubs .spot-inner {
  max-width: 940px;
  margin: 0 auto;
}

#olc-explore-hubs .spot-head h2 {
  margin: 0;
  font-size: 18px;
}
#olc-explore-hubs .spot-sub {
  margin: 4px 0 10px;
  color: var(--olc-muted);
}

#olc-explore-hubs .spot-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

#olc-explore-hubs .spot-card {
  flex: 0 0 min(70vw, 260px);
}

/* ==========================================================
   HUB CARD (Vendors + Spotlights)
   - centered name + hours
   - fixed name block height (no card size changes)
   - dynamic font shrink via JS class .is-long
   ========================================================== */

#olc-explore-hubs .hub-card {
  background: #ffffff;
  border-radius: var(--olc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--olc-shadow-xs);
  display: flex;
  flex-direction: column;
  cursor: pointer;

  transition: none !important; /* stop theme hover transitions */
  -webkit-tap-highlight-color: transparent;
}

#olc-explore-hubs .hub-card:hover {
  transform: none;
  box-shadow: var(--olc-shadow-xs);
}

#olc-explore-hubs .hub-card:active {
  transform: translateY(1px);
  box-shadow: var(--olc-shadow-sm);
}

#olc-explore-hubs .hub-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f3f3f3;
  overflow: hidden;
}

#olc-explore-hubs .hub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#olc-explore-hubs .hub-status-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

#olc-explore-hubs .hub-status-pill.open { background: var(--olc-green); }
#olc-explore-hubs .hub-status-pill.closed { background: #9ca3af; }
#olc-explore-hubs .hub-status-pill.temp-closed { background: var(--olc-amber-strong); }

#olc-explore-hubs .hub-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 12px;
  z-index: 2;
}

/* NAME BLOCK — centered at bottom overlay */
#olc-explore-hubs .hub-main-name {
  text-align: center;
  margin-bottom: 4px;
}

#olc-explore-hubs .hub-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  
  /* 2-line clamp keeps layout stable */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#olc-explore-hubs .hub-name.is-long {
  font-size: 14px;
  letter-spacing: -0.2px;
}

/* HOURS — subtle at bottom */
#olc-explore-hubs .hub-main-hours {
  text-align: center;
}

#olc-explore-hubs .hub-hours {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==========================================================
   SURPRISE CARD
   - remove hover effects completely
   ========================================================== */

#olc-explore-hubs .surp-wrap {
  padding: 22px 8px;
  background: #ffffff;
}
#olc-explore-hubs .surp-inner {
  max-width: 940px;
  margin: 0 auto;
}

#olc-explore-hubs .surp-card {
  text-align: center;
  padding: 18px 16px 22px;
  border-radius: var(--olc-radius-xl);
  background: #fffdf3;
  border: 1px dashed var(--olc-amber);
  box-shadow: var(--olc-shadow-xs);

  transition: none !important; /* kill hover */
  -webkit-tap-highlight-color: transparent;
}

#olc-explore-hubs .surp-card:hover {
  transform: none;
  box-shadow: var(--olc-shadow-xs);
}

#olc-explore-hubs .surp-card:active {
  transform: translateY(1px);
  box-shadow: var(--olc-shadow-sm);
}

#olc-explore-hubs .surp-ico-big {
  width: 50px;
  height: 50px;
  margin: 0 auto 6px;
  border-radius: 14px;
  background: #111;
  color: #ffd976;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--olc-shadow-xs);
}

#olc-explore-hubs .surp-title {
  margin: 2px 0 4px;
  font-size: 16px;
  font-weight: 900;
}

#olc-explore-hubs .surp-rotator-text {
  margin: 2px 0 12px;
  font-size: 12px;
  color: var(--olc-muted);
}

/* ==========================================================
   BUTTONS (single canonical style)
   - used by availability modal AND randomizer actions
   - no hover behavior
   ========================================================== */

#olc-explore-hubs .btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  border: none;

  transition: none !important; /* kill hover */
}

#olc-explore-hubs .btn-amber {
  background: var(--olc-amber);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(216,153,30,0.22);
  font-weight: 900;
}

#olc-explore-hubs .btn-amber:hover {
  background: var(--olc-amber);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(216,153,30,0.22);
}

#olc-explore-hubs .btn-amber:active {
  transform: translateY(1px);
  box-shadow: 0 14px 26px rgba(216,153,30,0.26);
}

/* ==========================================================
   VENDORS GRID
   ========================================================== */

#olc-explore-hubs .vend-wrap {
  padding: 22px 8px 30px;
}
#olc-explore-hubs .vend-inner {
  max-width: 940px;
  margin: 0 auto;
}

#olc-explore-hubs .vend-sub {
  margin: 2px 0 14px;
  font-size: 13px;
  color: var(--olc-muted);
}

#olc-explore-hubs .vend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 1024px) {
  #olc-explore-hubs .vend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

/* ==========================================================
   SIMPLE FOOTER
   ========================================================== */

#olc-explore-hubs .knx-footer {
  padding: 26px 16px 30px;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

#olc-explore-hubs .ft-line {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}
#olc-explore-hubs .ft-sub {
  margin: 4px 0 12px;
  font-size: 13px;
  color: var(--olc-muted);
}

/* ==========================================================
   SURPRISE MODAL
   - keep X, remove hover
   ========================================================== */

.surp-overlay {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.surp-modal {
  width: 92%; max-width: 440px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--olc-shadow-md);
  position: relative;
}

.surp-close {
  position: absolute; top: 12px; right: 12px;
}

/* Winner */
.surp-winner .aspect-16x9 {
  width: 100%;
  height: 260px;
  background: #f4f4f4;
}
.surp-winner .winner-body {
  padding: 22px;
  text-align: center;
}
.win-medal {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--olc-amber);
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: 53%; left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
}

/* ===== CASINO LOADER ===== */
.casino-loader {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  height: 100%;
  animation: casinoGlow 1.2s infinite alternate;
}
.slot {
  font-size: 46px;
  transition: none !important;
}
@keyframes casinoGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.35); }
}

/* ==========================================================
   NEXUS AVAILABILITY MODAL (Explore)
   - add X
   - button matches .btn-amber exactly
   ========================================================== */

#olc-explore-hubs .knx-avail {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
}

#olc-explore-hubs .knx-avail.hidden { display: none; }

#olc-explore-hubs .knx-avail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(7px);
}

#olc-explore-hubs .knx-avail-card {
  position: relative;
  width: 92%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 20px 22px;
  box-shadow: var(--olc-shadow-md);
  text-align: center;
  animation: knxAvailIn 0.22s ease-out;
  border: 1px solid rgba(0,0,0,0.06);
}

@keyframes knxAvailIn {
  from { transform: translateY(14px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

#olc-explore-hubs .knx-avail-icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 10px;
}

#olc-explore-hubs .knx-avail-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}

#olc-explore-hubs .knx-avail-message {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--olc-muted);
}

#olc-explore-hubs .knx-avail-countdown {
  margin: 0 auto 18px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 121, 58, 0.08);
  color: var(--olc-green);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2px;
}

#olc-explore-hubs .knx-avail-actions {
  display: flex;
  justify-content: center;
}

/* ==========================================================
   SHARED X BUTTON (Randomizer + Availability)
   - keep icon, kill hover
   ========================================================== */

#olc-explore-hubs .knx-modal-x {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #f3f4f6;

  cursor: pointer;
  box-shadow: var(--olc-shadow-xs);

  transition: none !important; /* kill hover */
}

#olc-explore-hubs .knx-modal-x:hover {
  background: #f3f4f6;
  transform: none;
}

#olc-explore-hubs .knx-modal-x:active {
  transform: translateY(1px);
}

#olc-explore-hubs .knx-modal-x i {
  font-size: 14px;
  color: #111827;
}

/* ==========================================================
   MOBILE RESPONSIVE - Hub Cards
   ========================================================== */

@media (max-width: 768px) {
  #olc-explore-hubs {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  #olc-explore-hubs .hub-strip .hub-card {
    min-width: 160px;
    max-width: 180px;
    height: 220px;
  }
  
  #olc-explore-hubs .hub-name {
    font-size: 14px;
  }
  
  #olc-explore-hubs .hub-hours {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  #olc-explore-hubs {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  #olc-explore-hubs .hub-strip .hub-card {
    min-width: 140px;
    max-width: 160px;
    height: 200px;
  }
  
  #olc-explore-hubs .hub-bottom {
    padding: 10px;
  }
  
  #olc-explore-hubs .hub-name {
    font-size: 13px;
  }
  
  #olc-explore-hubs .hub-hours {
    font-size: 9px;
  }
  
  #olc-explore-hubs .hub-strip {
    gap: 10px;
    padding: 6px 12px;
  }
}
