/* FV Hero Design */
.hero-section {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(199, 58, 58, 0.25) 100%);
}

/* 5px Highlight */
.custom-highlight {
  background: linear-gradient(transparent 50%, var(--highlight-color) 50%);
  padding: 0 4px;
  display: inline-block;
  font-weight: bold;
}

/* Title Decoration */
.title-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.title-with-lines::before,
.title-with-lines::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--brand-red);
}

.title-with-lines::before { transform: rotate(40deg); }
.title-with-lines::after { transform: rotate(-40deg); }

/* Card Hover Effect */
/* .blog-card, .video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */
/* .blog-card:hover, .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
} */

/* Sidebar Sticky */
.sidebar-sticky {
  position: sticky;
  top: 6em; /* Header height consideration */
}

/* Horizontal Scroll Slider */
.js-topslider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.js-topslider::-webkit-scrollbar {
  display: none;
}
.slider-item {
  flex: 0 0 80%;
  scroll-snap-align: center;
  position: relative;
  cursor: pointer;
}
.slider-item iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .slider-item {
      flex: 0 0 300px;
  }
}

/* Pagination Style */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Jost', sans-serif;
  font-weight: bold;
  transition: all 0.2s;
}
.page-numbers.current {
  background-color: var(--brand-red);
  color: white;
}
.page-numbers:hover:not(.current) {
  background-color: #eee;
}
