.lap-eyebrow {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.lap-title-line {
  white-space: nowrap;
}

.hero--sub .hero__subtitle {
  max-width: var(--max-width);
}

.lap-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xs) var(--spacing-lg);
}

.lap-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lap-perks li::before {
  content: "\2713";
  font-weight: 700;
  color: var(--color-accent-hover);
}

.lap-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.lap-split .section__title,
.lap-config .section__title {
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-wrap: balance;
}

.lap-text p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: justify;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

.lap-text .lap-text__lead {
  font-size: var(--fs-md);
}

.lap-checks {
  list-style: none;
  display: grid;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.lap-checks li {
  position: relative;
  padding-left: var(--spacing-lg);
  line-height: 1.6;
  color: var(--color-text-muted);
  text-wrap: pretty;
}

.lap-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--color-accent-hover);
}

.lap-text .lap-note {
  margin-bottom: 0;
  font-size: var(--fs-sm);
  text-align: left;
}

.lap-photo {
  display: block;
}

.lap-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.lap-lead {
  margin-bottom: var(--spacing-md);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--color-text-muted);
  text-wrap: pretty;
}

.lap-m365 {
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: justify;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

.lap-m365 a {
  font-weight: 600;
}

.lap-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
}

.lap-step {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  font-weight: 600;
  color: var(--color-heading);
}

.lap-step + .lap-step {
  border-top: 1px solid var(--color-border);
}

.lap-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: var(--fs-sm);
  color: var(--color-white);
  background-color: var(--color-accent);
}

@media (min-width: 900px) {
  .lap-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: stretch;
  }

  .lap-photo img {
    height: 100%;
    aspect-ratio: auto;
  }

  .lap-cards.care-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lap-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .lap-step + .lap-step {
    border-top: 0;
    border-left: 1px solid var(--color-border);
  }
}

@media (max-width: 899px) {
  .lap-br {
    display: none;
  }
}

@media (max-width: 560px) {
  .lap-title-line {
    white-space: normal;
  }

  .lap-text p,
  .lap-m365 {
    text-align: left;
    hyphens: manual;
  }
}
