/**
 * Hero altı ticker — horizontal swipe
 */

.kh-hero-ticker {
  margin: 0 0 2rem;
  width: 100%;
  min-width: 0;
}

.kh-hero-ticker__head {
  margin: 0 0 10px;
}

.kh-hero-ticker__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #00d4ff);
}

.kh-hero-ticker__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}

.kh-hero-ticker__track::-webkit-scrollbar {
  display: none;
}

.kh-hero-ticker__chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(220px, 72vw);
  max-width: 280px;
  padding: 8px 12px 8px 8px;
  text-decoration: none;
  color: var(--text, #f8fafc);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  scroll-snap-align: start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.kh-hero-ticker__chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.kh-hero-ticker__thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
}

.kh-hero-ticker__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kh-hero-ticker__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
