/* ═══════════════════════════════════════════════
   home.css  –  TicketCket Homepage
   ═══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   HERO SECTION OVERRIDES
   ══════════════════════════════════════════════ */

/* Taller card */
.hero-section.hero-5 .hero-wrapper {
  height: 540px !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Cinematic gradient overlay */
.hero-section.hero-5 .hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.20) 35%,
    rgba(0,0,0,.72) 75%,
    rgba(0,0,0,.88) 100%
  );
  z-index: 0;
}

/* Push content above the overlay */
.hero-section.hero-5 .container { position: relative; z-index: 1; }

/* "Featured Event" badge above title */
.hero-section.hero-5 .hero-inner-text::before {
  content: '★  Featured Event';
  display: inline-flex;
  align-items: center;
  background: #006d36;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,196,97,.35);
}

/* Tighten & polish the title */
.hero-section.hero-5 .soundscapes.no-stroke {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem) !important;
  min-height: auto !important;
  line-height: 1.08 !important;
  letter-spacing: -0.5px !important;
  text-shadow: 0 3px 20px rgba(0,0,0,.55) !important;
  margin-top: 0 !important;
}

/* ── Info strip ─────────────────────────────── */
.hero-section.hero-5 .event-info.custom-inner-bg {
  --bs-custom-inner-bg: rgba(8, 8, 8, 0.52) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 0 0 20px 20px !important;
  margin-top: 0 !important;
}

.hero-section.hero-5 .event-info .event-inner {
  padding: 20px 40px !important;
}

/* Make divider lines white/subtle */
.hero-section.hero-5 .event-info {
  --bs-border-color: rgba(255,255,255,.15) !important;
}

/* Date & venue labels */
.hero-section.hero-5 .event-info h4,
.hero-section.hero-5 .event-info .h4 {
  color: rgba(255,255,255,.60) !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  margin-top: 4px !important;
  letter-spacing: .02em;
}

.hero-section.hero-5 .event-info h2,
.hero-section.hero-5 .event-info .h2 {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* Attending number */
.hero-section.hero-5 .event-info .odometer,
.hero-section.hero-5 .event-info .event-odometer-heading {
  color: #00c461 !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

/* Buy Ticket button */
.hero-section.hero-5 .event-info .btn-primary {
  background: #006d36 !important;
  border-color: #006d36 !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(0,196,97,.35) !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.hero-section.hero-5 .event-info .btn-primary:hover {
  background: #00c461 !important;
  border-color: #00c461 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(0,196,97,.5) !important;
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section.hero-5 .hero-wrapper {
    height: 420px !important;
  }
  .hero-section.hero-5 .event-info .event-inner {
    padding: 16px 20px !important;
  }
  .hero-section.hero-5 .event-info h2 {
    font-size: .95rem !important;
  }
}

:root {
  --hm-green:    #006d36;
  --hm-green-lt: #00c461;
  --hm-green-bg: #edfaf3;
  --hm-dark:     #0d1117;
  --hm-text:     #1a1a2e;
  --hm-muted:    #6b7280;
  --hm-border:   #e5e7eb;
  --hm-bg:       #f7f8fa;
  --hm-card-bg:  #ffffff;
  --hm-radius:   18px;
  --hm-shadow:   0 2px 14px rgba(0,0,0,.07);
  --hm-shadow-h: 0 8px 32px rgba(0,0,0,.14);
}

/* ── Scroll-reveal animation class ─────────────── */
.hm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.hm-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hm-reveal-delay-1 { transition-delay: .1s; }
.hm-reveal-delay-2 { transition-delay: .2s; }
.hm-reveal-delay-3 { transition-delay: .3s; }
.hm-reveal-delay-4 { transition-delay: .4s; }


/* ═══════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════ */
.hm-hero {
  margin: 0 16px 40px;
  border-radius: var(--hm-radius);
  overflow: hidden;
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
}

/* Gradient overlay */
.hm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.30) 40%,
    rgba(0,0,0,.82) 100%
  );
  border-radius: var(--hm-radius);
}

.hm-hero-inner {
  position: relative;
  z-index: 1;
  padding: 36px 40px 0;
}

.hm-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hm-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.hm-hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* Bottom strip */
.hm-hero-strip {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 20px 40px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hm-hero-strip-item {
  flex: 1;
  min-width: 140px;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hm-hero-strip-item:first-child { padding-left: 0; }
.hm-hero-strip-item:last-child {
  border-right: none;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hm-hero-strip-label {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.hm-hero-strip-value {
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
}
.hm-hero-strip-value small {
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-left: 4px;
}

.hm-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hm-green-lt);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,196,97,.35);
}
.hm-hero-cta:hover {
  background: var(--hm-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,196,97,.45);
  color: #fff;
  text-decoration: none;
}
.hm-hero-cta i { font-size: .8rem; }

/* Attendance badge */
.hm-hero-attend {
  display: flex;
  flex-direction: column;
}
.hm-hero-attend-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hm-green-lt);
  line-height: 1;
}
.hm-hero-attend-label {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════
   2. CATEGORIES
   ═══════════════════════════════════════════════ */
.hm-categories {
  padding: 0 16px 48px;
}
.hm-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
}
.hm-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hm-text);
  margin: 0;
}
.hm-section-title span { color: var(--hm-green); }
.hm-view-all {
  font-size: .82rem;
  font-weight: 600;
  color: var(--hm-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.hm-view-all:hover { gap: 9px; color: var(--hm-green); }

.hm-cat-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.hm-cat-scroll::-webkit-scrollbar { display: none; }

.hm-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 90px;
  text-decoration: none;
  color: var(--hm-text);
  transition: transform .22s;
}
.hm-cat-item:hover { transform: translateY(-4px); color: var(--hm-text); text-decoration: none; }

.hm-cat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--hm-card-bg);
  border: 1.5px solid var(--hm-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--hm-shadow);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.hm-cat-item:hover .hm-cat-icon {
  border-color: var(--hm-green-lt);
  background: var(--hm-green-bg);
  box-shadow: 0 4px 16px rgba(0,196,97,.18);
}
.hm-cat-icon img { width: 30px; height: 30px; object-fit: contain; }
.hm-cat-label {
  font-size: .75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}


/* ═══════════════════════════════════════════════
   3. POPULAR EVENTS  (Swiper)
   ═══════════════════════════════════════════════ */
.hm-popular {
  padding: 0 16px 56px;
}
.hm-popular-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.hm-popular-text {}
.hm-popular-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--hm-green);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.hm-popular-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--hm-green-lt);
  border-radius: 2px;
}
.hm-popular-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--hm-text);
  line-height: 1.15;
  margin: 0 0 16px;
}
.hm-popular-title em {
  font-style: normal;
  color: var(--hm-green);
}
.hm-popular-desc {
  font-size: .88rem;
  color: var(--hm-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}
.hm-popular-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--hm-green);
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--hm-green);
  border-radius: 50px;
  transition: background .2s, color .2s, gap .2s;
}
.hm-popular-link:hover {
  background: var(--hm-green);
  color: #fff;
  gap: 12px;
  text-decoration: none;
}

/* Swiper slide cards */
.lineup-swiper .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}
.hm-swiper-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.hm-swiper-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hm-swiper-card:hover img { transform: scale(1.05); }

.hm-swiper-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 55%);
  border-radius: 16px;
}
.hm-swiper-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  transform: translateY(30px);
  transition: transform .3s ease;
}
.hm-swiper-card:hover .hm-swiper-info { transform: translateY(0); }

.hm-swiper-cat {
  display: inline-block;
  background: var(--hm-green);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.hm-swiper-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hm-swiper-social {
  display: flex;
  gap: 8px;
}
.hm-swiper-social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .75rem;
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: background .2s;
}
.hm-swiper-social a:hover { background: var(--hm-green); }

/* Swiper nav buttons */
.swiper-button-progress {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}
.swiper-button-progress .swiper-button-next,
.swiper-button-progress .swiper-button-prev {
  position: static !important;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hm-card-bg);
  border: 1.5px solid var(--hm-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  margin-top: 0 !important;
}
.swiper-button-progress .swiper-button-next:hover,
.swiper-button-progress .swiper-button-prev:hover {
  background: var(--hm-green);
  border-color: var(--hm-green);
  color: #fff;
}
.swiper-button-progress .swiper-button-next::after,
.swiper-button-progress .swiper-button-prev::after { display: none; }


/* ═══════════════════════════════════════════════
   4. SCHEDULE / TABS
   ═══════════════════════════════════════════════ */
.hm-schedule {
  padding: 0 16px 56px;
}
.hm-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.schedule-button {
  background: var(--hm-card-bg) !important;
  border: 1.5px solid var(--hm-border) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  color: var(--hm-muted) !important;
  cursor: pointer;
  transition: all .2s !important;
  outline: none;
}
.schedule-button:hover {
  border-color: var(--hm-green-lt) !important;
  color: var(--hm-green) !important;
  background: var(--hm-green-bg) !important;
}
.schedule-button.active {
  background: var(--hm-green) !important;
  border-color: var(--hm-green) !important;
  color: #fff !important;
}
.schedule-button span {
  font-size: .82rem !important;
  font-weight: 600 !important;
}

/* Event list items */
.hm-event-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--hm-radius);
  background: var(--hm-card-bg);
  border: 1.5px solid var(--hm-border);
  box-shadow: var(--hm-shadow);
  text-decoration: none;
  color: var(--hm-text);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  margin-bottom: 14px;
  animation: fadeUp .35s ease both;
}
.hm-event-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--hm-shadow-h);
  border-color: rgba(0,196,97,.3);
  color: var(--hm-text);
  text-decoration: none;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(14px); }
  to   { opacity:1; transform: translateY(0); }
}

.hm-event-img {
  width: 100px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.hm-event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.hm-event-item:hover .hm-event-img img { transform: scale(1.08); }

.hm-event-info { flex: 1; min-width: 0; }
.hm-event-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--hm-text);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hm-event-desc {
  font-size: .8rem;
  color: var(--hm-muted);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hm-event-arrow {
  align-self: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hm-bg);
  border: 1.5px solid var(--hm-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--hm-muted);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.hm-event-item:hover .hm-event-arrow {
  background: var(--hm-green);
  border-color: var(--hm-green);
  color: #fff;
  transform: translateX(3px);
}
.hm-empty-tab {
  text-align: center;
  padding: 40px 20px;
  color: var(--hm-muted);
  font-size: .88rem;
}
.hm-empty-tab i { display: block; font-size: 2rem; color: #d1d5db; margin-bottom: 12px; }


/* ═══════════════════════════════════════════════
   5. MARQUEE
   ═══════════════════════════════════════════════ */
.hm-marquee {
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--hm-border);
  border-bottom: 1px solid var(--hm-border);
  margin-bottom: 56px;
  background: var(--hm-bg);
}
.hm-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}
.hm-marquee-track:hover { animation-play-state: paused; }
.hm-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--hm-text);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.hm-marquee-sep {
  color: var(--hm-green-lt);
  font-size: 1.2rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   6. GALLERY
   ═══════════════════════════════════════════════ */
.hm-gallery {
  padding: 0 16px 56px;
}
.gallery-image {
  border-radius: 14px;
  overflow: hidden;
}
.gallery-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .3s;
  border-radius: 14px;
}
.gallery-image:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}


/* ═══════════════════════════════════════════════
   7. NEWSLETTER
   ═══════════════════════════════════════════════ */
.hm-newsletter {
  margin: 0 16px 64px;
  border-radius: 24px;
  background: linear-gradient(135deg, #006d36 0%, #009d4e 50%, #00c461 100%);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.hm-newsletter::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.hm-newsletter::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.hm-newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hm-nl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.hm-nl-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 12px;
}
.hm-nl-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0 0 28px;
}
.hm-nl-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
}
.hm-nl-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  font-size: .88rem;
  outline: none;
  background: rgba(255,255,255,.95);
  color: var(--hm-text);
}
.hm-nl-input::placeholder { color: #9ca3af; }
.hm-nl-input:focus { background: #fff; }
.hm-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  background: var(--hm-dark);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.hm-nl-btn:hover { background: #000; transform: translateY(-2px); }

/* Newsletter right — stats */
.hm-nl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hm-nl-stat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.hm-nl-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.hm-nl-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hm-popular-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hm-popular-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hm-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hm-nl-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .hm-hero-strip {
    gap: 0;
    flex-wrap: wrap;
  }
  .hm-hero-strip-item {
    min-width: 120px;
    flex: 1 1 120px;
    margin-bottom: 12px;
    border-right: none;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .hm-hero-strip-item:last-child {
    border-bottom: none;
    justify-content: flex-start;
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .hm-hero {
    margin: 0 10px 32px;
    min-height: 360px;
  }
  .hm-hero-inner { padding: 24px 20px 0; }
  .hm-hero-strip { padding: 16px 20px; }
  .hm-newsletter {
    margin: 0 10px 48px;
    padding: 36px 24px;
  }
  .hm-nl-form { flex-direction: column; }
  .hm-nl-btn { border-radius: 50px; justify-content: center; }
  .hm-nl-stats { grid-template-columns: 1fr 1fr; }
  .hm-categories, .hm-popular, .hm-schedule, .hm-gallery { padding-left: 10px; padding-right: 10px; }
}

@media (max-width: 480px) {
  .hm-hero-title { font-size: 1.8rem; }
  .hm-tabs { gap: 6px; }
  .schedule-button { padding: 6px 14px !important; font-size: .78rem !important; }
  .schedule-button span { font-size: .78rem !important; }
  .hm-nl-stats { grid-template-columns: 1fr 1fr; }
  .hm-event-img { width: 72px; height: 62px; }
}
