.home-page {
  overflow-x: clip;
}

.home-hero .hero-copy {
  max-width: 780px;
}

.home-support-text {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.home-content-section {
  padding-top: clamp(28px, 5vw, 54px);
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-entry-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 30px);
  color: inherit;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(42, 24, 34, 0.06);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-entry-card h3 {
  margin: 0 0 12px;
}

.home-entry-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.home-entry-card:hover,
.home-entry-card:focus-visible {
  border-color: rgba(19, 125, 136, 0.42);
  box-shadow: 0 22px 54px rgba(42, 24, 34, 0.12);
  transform: translateY(-3px);
}

.home-entry-card:focus-visible {
  outline: 3px solid rgba(19, 125, 136, 0.24);
  outline-offset: 3px;
}

.home-entry-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
}

.home-about {
  background: rgba(255, 255, 255, 0.48);
  border-block: 1px solid var(--line);
}

.home-about-copy {
  max-width: 780px;
}

.home-about-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .home-entry-grid {
    grid-template-columns: 1fr;
  }

  .home-entry-card {
    min-height: 0;
  }
}