/* ══════════════════════════════════════════════════════════
   MITGLIEDER WERBEN — standalone page
══════════════════════════════════════════════════════════ */

/* ── Header ── */
.mw-header {
  padding-top: var(--nav-h);
}
.mw-header-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2.75rem;
  position: relative;
  z-index: 1;
}
.mw-header-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3.25rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .92;
  color: var(--white);
  margin: .5rem 0 .875rem;
}
.mw-header-title em {
  font-style: normal;
  color: rgba(var(--rgb-white), .75);
}

/* ── Hero split: card + voucher ── */
.mw-hero-split {
  display: grid;
  grid-template-columns: 26rem 1fr;
  min-height: 22rem;
  border-bottom: 1px solid var(--border);
}

.mw-hero-card {
  background: var(--off-black);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem 2.5rem;
}
.mw-hero-card-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}
.mw-card-img {
  width: 100%;
  max-width: 18rem;
  border-radius: 1.2rem;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}

.mw-hero-voucher {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem clamp(2rem, 6vw, 4rem);
  gap: .875rem;
  position: relative;
  overflow: hidden;
}
.mw-hero-voucher::before {
  content: '50';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Teko', sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--rgb-red), .1);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.mw-voucher-amount {
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  line-height: 1;
}
.mw-voucher-currency {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--red);
  margin-top: .5rem;
}
.mw-voucher-number {
  font-family: 'Teko', sans-serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.mw-voucher-desc {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.mw-voucher-partners {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Teko', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mw-voucher-or {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--faint);
  text-transform: lowercase;
  letter-spacing: 0;
}
.mw-voucher-note {
  font-size: 1.3rem;
  color: var(--gray-100);
  line-height: 1.3;
  max-width: 36rem;
  margin: .25rem 0 0;
  border-top: 1px solid var(--border);
  padding-top: .875rem;
}

/* ── Main wrap ── */
.mw-main { background: var(--off-black); }
.mw-wrap {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Sections ── */
.mw-section { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.mw-section:last-child { border-bottom: none; }
.mw-section-hdr {
  margin-bottom: 2rem;
}
.mw-section-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

/* ── Steps ── */
.mw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 56rem;
}
.mw-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.mw-step:last-child { border-bottom: none; }
.mw-step-num {
  font-family: 'Teko', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  padding-top: .1.2rem;
  opacity: .85;
}
.mw-step-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 .5rem;
}
.mw-step-text {
  font-size: 1.3rem;
  color: var(--gray-100);
  line-height: 1.3;
  margin: 0;
}

/* ── Detail cards ── */
.mw-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mw-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mw-detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--red);
}
.mw-detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
}
.mw-detail-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.mw-detail-text {
  font-size: 1.3rem;
  color: var(--gray-100);
  line-height: 1.3;
  margin: 0;
}

/* ── CTA block ── */
.mw-cta-block {
  padding: 3.5rem 0 4rem;
}
.mw-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}
.mw-cta-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 .375rem;
}
.mw-cta-sub {
  font-size: 1.3rem;
  color: var(--gray-100);
  margin: 0;
  line-height: 1.3;
  max-width: 34rem;
}
.mw-cta-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.mw-cta-slogan {
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 64rem) {
  .mw-hero-split { grid-template-columns: 1fr; }
  .mw-hero-card { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; justify-content: flex-start; padding: 2rem 2.5rem; }
  .mw-card-img { max-width: 10rem; }
  .mw-details-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 48rem) {
  .mw-cta-inner { flex-direction: column; align-items: flex-start; }
  .mw-cta-actions { width: 100%; }
}
@media (max-width: 40rem) {
  .mw-header-inner { padding: 1.75rem 1rem 1.5rem; }
  .mw-wrap { padding: 0 1.2rem; }
  .mw-hero-card { flex-direction: column; align-items: center; padding: 2rem 1.25rem; }
  .mw-hero-voucher { padding: 2rem 1.25rem; }
  .mw-details-grid { grid-template-columns: 1fr; }
  .mw-step { grid-template-columns: 3rem 1fr; gap: 1.2rem; }
  .mw-cta-inner { padding: 1.5rem; }
}
