/* KADSU — ORTAK GÖRSEL VİTRİN */

.kds-showcase-banner {
  position: relative;
  width: 100%;
  height: min(82vh, 880px);
  min-height: 620px;
  overflow: hidden;
  background: #d8d3cc;
}

.kds-showcase-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.kds-showcase-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 25%,
    rgba(0, 0, 0, 0.18) 62%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.kds-showcase-banner-content {
  position: absolute;
  right: 24px;
  bottom: 42px;
  left: 24px;
  z-index: 2;
  color: #ffffff;
  text-align: center;
}

.kds-showcase-banner-content h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--kds-font-heading);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.kds-showcase-banner-content p {
  max-width: 560px;
  margin: 0 auto 18px;
  font-family: var(--kds-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.kds-showcase-banner-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-family: var(--kds-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
}

.kds-showcase-banner:hover .kds-showcase-banner-image {
  transform: scale(1.018);
}

@media (max-width: 600px) {
  .kds-showcase-banner {
    height: 75svh;
    min-height: 540px;
  }

  .kds-showcase-banner-content {
    bottom: 28px;
    left: 18px;
    right: 18px;
  }

  .kds-showcase-banner-content h2 {
    font-size: 38px;
  }

  .kds-showcase-banner-content p {
    font-size: 12px;
  }
}
