/* MODULE: featured-event ──────────────────────────────────── */
.featured-event { background: var(--bg); }

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.featured-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  height: 100%;
}
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.featured-content {
  padding: 48px 48px 48px 0;
}

.featured-content .section-title { margin: 8px 0 16px; }

.featured-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.event-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}
.event-details svg { color: var(--accent); }

/* ── Featured Slider ────────────────────────────────────────── */
.featured-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* Remove individual card border-radius/shadow inside slider */
.featured-slider-wrap .featured-inner {
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.featured-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.featured-slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* Navigation arrows */
.featured-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(10,10,12,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: background 0.2s;
}
.featured-nav.visible { display: flex; }
.featured-nav:hover { background: var(--accent); }
.featured-nav-prev { left: 14px; }
.featured-nav-next { right: 14px; }

/* Dots below slider */
.featured-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.featured-dots.visible { display: flex; }
.featured-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.featured-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* Button row inside featured slide */
.featured-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .featured-nav { width: 34px; height: 34px; font-size: 14px; }
  .featured-nav-prev { left: 8px; }
  .featured-nav-next { right: 8px; }
}
