/* Twentyseven, Section Ausgangslage auf /corporate-design/ */

.cd-aus {
  background: #0A0A0B;
  padding: 120px 24px;
}

.cd-aus__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.cd-aus__eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFA847;
  padding-top: 10px;
  border-top: 2px solid #FFA847;
  margin-bottom: 20px;
}

.cd-aus__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.cd-aus__title .is-accent { color: #FFA847; }

.cd-aus__lead {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #F3F3F3;
  max-width: 62ch;
  margin: 0 0 56px;
}

/* Raster, drei gleichwertige Karten */
.cd-aus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.cd-aus__card {
  background: #161618;
  border: 1px solid #26262A;
  border-radius: 4px;
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Bewusst identisch fuer alle drei Karten.
   Keine Hervorhebung, kein Glow, keine Skalierung. */
.cd-aus__card:hover {
  border-color: #3A3A40;
  transition: border-color 0.2s ease;
}

.cd-aus__card-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 28px;
  min-height: 3.75em; /* haelt die drei Titel auf einer Grundlinie */
}

.cd-aus__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFA847;
  margin: 0 0 8px;
}

.cd-aus__body {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1.62;
  color: #D7D9DC;
  margin: 0 0 26px;
}

.cd-aus__body:last-child { margin-bottom: 0; }

/* Abschluss und CTA */
.cd-aus__cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.cd-aus__cta-line {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #91979E;
  margin: 0;
}

.cd-aus__btn a,
a.cd-aus__btn {
  display: inline-block;
  background: #FFA847;
  color: #0A0A0B;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cd-aus__btn a:hover,
a.cd-aus__btn:hover { background: #F2911B; }

.cd-aus__btn a:focus-visible,
a.cd-aus__btn:focus-visible {
  outline: 2px solid #FFF5E4;
  outline-offset: 3px;
}

/* Sprungziel Formular */
#anfrage { scroll-margin-top: 96px; }

@media (max-width: 1024px) {
  .cd-aus__grid { grid-template-columns: 1fr 1fr; }
  .cd-aus__card-title { min-height: 0; }
}

@media (max-width: 720px) {
  .cd-aus { padding: 80px 20px; }
  .cd-aus__grid { grid-template-columns: 1fr; gap: 18px; }
  .cd-aus__card { padding: 28px 24px 32px; }
  .cd-aus__lead { margin-bottom: 36px; }
  .cd-aus__cta { margin-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .cd-aus__card,
  .cd-aus__btn a { transition: none; }
}