/* =========================================================
   Sector Carousel
   ========================================================= */

.sector-carousel-section {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 24px;
}

.sector-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sector-carousel::-webkit-scrollbar {
  height: 6px;
}
.sector-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.sector-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.sc-card {
  flex: 0 0 320px;
  height: 420px;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--white-10);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  display: block;
}

.sc-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan-400);
}

.sc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.sc-card:hover img {
  transform: scale(1.05);
}

.sc-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  font-style: italic;
  pointer-events: none;
}

@media (max-width: 768px) {
  .sc-card {
    flex: 0 0 280px;
    height: 380px;
  }
}
