/* =============================================
   Lucifer Nails — Termine Page
   ============================================= */

/* Mirrored hero: image column moves to the left, text to the right.
   We use grid-column direct assignment (not `direction: rtl`, which flips
   inner text too). The scroll-cue stays centered at the bottom. */
.po-hero.po-hero--mirrored .po-hero-image {
  grid-column: 1;
}
.po-hero.po-hero--mirrored .po-hero-text {
  grid-column: 2;
}
@media (max-width: 880px) {
  /* On mobile we want text first (above image) — same as press-ons */
  .po-hero.po-hero--mirrored .po-hero-image {
    grid-column: 1;
    grid-row: 2;
  }
  .po-hero.po-hero--mirrored .po-hero-text {
    grid-column: 1;
    grid-row: 1;
  }
}

/* ---------- Status card (single info block instead of gallery grid) ---------- */
.to-section--status {
  max-width: 880px;
}

.to-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 44px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(255, 5, 127, 0.04) 0%, transparent 60%),
    var(--paper);
}
@media (max-width: 640px) {
  .to-status {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 20px;
  }
}

.to-status-icon {
  color: var(--accent);
  display: grid;
  place-items: center;
  padding-top: 4px;
}

.to-status-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.to-status-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.to-status-headline strong {
  font-family: var(--font-highlight);
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  font-size: 1.05em;
  letter-spacing: -0.01em;
}

.to-status-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

.to-status-cta {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
