/**
 * Sonraki bölüm banner
 */

.kh-next-chapter-banner {
  margin: 2rem 0 1.5rem;
  width: 100%;
}

.kh-next-chapter-banner__link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  text-decoration: none;
  color: #f8fafc;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.35), rgba(124, 58, 237, 0.25));
  border: 1px solid rgba(0, 212, 255, 0.45);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kh-next-chapter-banner__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 212, 255, 0.25);
}

.kh-next-chapter-banner__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.2), transparent 55%);
  pointer-events: none;
}

.kh-next-chapter-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.kh-next-chapter-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.kh-next-chapter-banner__title {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
}

.kh-next-chapter-banner__cta {
  font-size: 14px;
  font-weight: 700;
  color: #00d4ff;
}

.kh-next-chapter-banner__media {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.kh-next-chapter-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 560px) {
  .kh-next-chapter-banner__link {
    grid-template-columns: 1fr;
  }

  .kh-next-chapter-banner__media {
    width: 100%;
    height: 120px;
  }
}
