/* ImageBanner — full-bleed image with overlaid eyebrow / title / copy / button.
   No horizontal gutter: the media spans edge-to-edge within the centered
   max-width container. Outer spacing is merchant-controlled (margin props). */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner {
  width: 100%;
  margin-top: var(--ib-mt, 0px);
  margin-bottom: var(--ib-mb, 0px);
}

/* Conforms to the existing container (max-width) but WITHOUT padding-inline,
   so the image reaches the container edges (yatay boşluk yok). */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__media.has-ratio {
  aspect-ratio: var(--ib-ratio, 16 / 9);
}

/* <picture> is a transparent wrapper so the <img> positions against the figure. */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__pic {
  display: contents;
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: var(--ib-fit, cover);
}

/* Ratio mode: pin the image to fill the aspect box. Auto mode keeps natural height. */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__media.has-ratio .image-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Readability scrim */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--ib-ov, #0d0d0d);
  opacity: var(--ib-ov-op, 0.3);
  pointer-events: none;
}

/* Positioning layer — column flex; justify = vertical, align = horizontal. */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: var(--ib-vy, center);
  align-items: var(--ib-hx, flex-start);
  padding: clamp(22px, 5vw, 72px);
  pointer-events: none;
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__box {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
  max-width: 560px;
  color: var(--ib-text, #fff);
  pointer-events: auto;
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__box--left {
  align-items: flex-start;
  text-align: left;
}
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__box--center {
  align-items: center;
  text-align: center;
}
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__box--right {
  align-items: flex-end;
  text-align: right;
}

/* Eyebrow — KEREM DM Mono label with the accent rule. */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
}
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ib-ac, var(--accent));
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__title {
  margin: 0;
  font-size: clamp(32px, 5vw, var(--ts-max, 68px));
  color: inherit;
}

.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__desc {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.55;
  color: inherit;
  opacity: 0.92;
}

/* Button reuses the global .btn-fill (accent fill on hover via --btn-fill). */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__btn {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__content {
    padding: clamp(20px, 7vw, 40px);
  }
  .cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__box {
    max-width: 100%;
  }
}

/* TOKEN KÖPRÜ — bkz. global.css */
.cc_ud05zvg3_Fj5Q0PFJ6u .image-banner__eyebrow { letter-spacing: var(--mono-ls, .22em); }
