/* Newsletter — dark CTA strip (KEREM .foot-cta + .field-inline). */
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter {
  width: 100%;
  background: var(--dark);
  color: var(--nl-ink, var(--paper));
  padding-top: var(--nl-mt, clamp(44px, 5.5vw, 80px));
  padding-bottom: var(--nl-mb, clamp(44px, 5.5vw, 80px));
}

.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  flex-wrap: wrap;
}

.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Type from the "Etiket" token (index.tsx). */
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__eyebrow {
  text-transform: uppercase;
  color: var(--nl-ink, var(--paper));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--nl-ac, var(--accent)); }
/* Type from the "Başlık 2" token; size stays fluid with its ceiling in --ts-max. */
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__title {
  margin: 0.16em 0 0;
  font-size: clamp(30px, 4vw, var(--ts-max, 60px));
  max-width: 18ch;
  color: var(--nl-ink, var(--paper));
}

/* --- Form --- */
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__form-wrap { flex: 0 1 360px; min-width: 280px; }
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__field {
  display: flex;
  border: 1px solid color-mix(in srgb, var(--nl-ink, #fff) 25%, transparent);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__field.has-error { border-color: var(--danger-soft); }
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__input {
  flex: 1;
  background: none;
  border: none;
  color: var(--nl-ink, var(--paper));
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__input::placeholder { color: color-mix(in srgb, var(--nl-ink, #fff) 40%, transparent); }
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__btn {
  background: var(--nl-ac, var(--accent));
  border: none;
  color: var(--on-accent);
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__btn:hover { background: #fff; color: var(--dark); }
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__btn:disabled { opacity: 0.7; cursor: default; }
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__error {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--danger-soft);
}

/* --- Success --- */
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__success {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--nl-ink, var(--paper));
  animation: cc_oe6aXTYiT2_hgSFKmPKe5_nl-success-in 0.4s var(--ease);
}
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__success-ic {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--nl-ac, var(--accent));
  color: var(--on-accent);
  font-size: 15px;
}
@keyframes cc_oe6aXTYiT2_hgSFKmPKe5_nl-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__inner { flex-direction: column; align-items: stretch; gap: 28px; }
  .cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter__form-wrap { flex: 1 1 auto; max-width: none; }
}

/* Scroll reveal: eyebrow+title from left, form from right */
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter[data-revealed] .newsletter__copy {
  animation: cc_oe6aXTYiT2_reveal-from-left 0.75s var(--ease) 0.15s both;
}
.cc_oe6aXTYiT2_hgSFKmPKe5 .newsletter[data-revealed] .newsletter__form-wrap {
  animation: cc_oe6aXTYiT2_reveal-from-right 0.75s var(--ease) 0.3s both;
}
