/* pages.css — Page-specific overrides. */
/* Phase 1: intentionally empty. Phases 2-5 add per-page rules here. */

/* ===================================================================== */
/* === Phase 2 — Startseite (Plan A) ================================== */
/* ===================================================================== */

/* Hero min-height: substantial Hero at all viewports (research A1) */
.hero {
  min-height: 480px;
  display: flex;
  align-items: center;
}
@media (min-width: 980px) {
  .hero {
    min-height: 560px;
  }
}

/* ===================================================================== */
/* === Phase 2 — Startseite (Plan B) ================================== */
/* ===================================================================== */

/* Wer-Block portrait: centered above text on mobile, left-aligned beside text >=620px (D-08) */
.wer-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 620px) {
  .wer-portrait {
    align-items: flex-start;
  }
}
.portrait-img {
  width: 220px;
  height: 270px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-card);
  display: block;
}

/* ===================================================================== */
/* === Phase 3 — Content Pages (Plan A) ================================ */
/* ===================================================================== */

/* Ansatz (/ansatz): no page-specific overrides required. The .numbered-block */
/* component in components.css is fully self-contained — its flex row layout */
/* works at all breakpoints without an ansatz-scoped media query. */

/* ===================================================================== */
/* === Phase 4 — Kontakt & Consent Gate ================================ */
/* ===================================================================== */

/* CONV-04: fixed min-height prevents layout shift during Calendly iframe load */
.calendly-container {
  min-height: 700px;
  width: 100%;
  min-width: 320px;
  position: relative;
}

/* Calendly widget div — must have explicit height or widget.js renders the iframe tiny */
.calendly-inline-widget {
  width: 100%;
  height: 700px;
}

/* Pre-consent placeholder card (inside .calendly-container, before consent given) */
.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  gap: 1.5rem;
  text-align: center;
  padding: var(--space-card-padding);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-card);
  background: var(--color-card-light);
  color: var(--color-text-dark);
}
