.home .aside .card {
  margin-top: -100px;
}
.home .grid-content {
  margin-top: 3rem;
}
.home .latest-news .badge {
  margin-right: 0.25rem;
}

/* Phase 7.2's crawlable sections, below the order form. Measure-capped and
   centred so they read as prose across the full-width area under the grid,
   rather than inheriting the narrow content column beside the form. */
.home .home-section {
  margin: 0 auto 3rem;
  max-width: 52rem;
}
.home .home-section-intro {
  margin-top: 0;
}
.home .home-section h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}

.home .home-steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.home .home-steps-grid h3 {
  margin-bottom: 0.25rem;
}
.home .home-steps-grid p {
  margin-top: 0;
}

.home .home-faq h3 {
  margin-bottom: 0.25rem;
}
.home .home-faq-answer {
  line-height: 1.5;
}

@media only screen and (min-width: 720px) {
  .home .home-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 900px) {
  .home .grid-container {
    display: grid;
    grid-template-columns: 480px 1fr;
    grid-template-rows: 300px 1fr;
    gap: 32px;
    grid-template-areas:
      "sidebar title"
      "sidebar content";
  }
  .home .grid-sidebar {
    grid-area: sidebar;
    padding-top: 2rem;
  }
  .home .grid-title {
    grid-area: title;
    align-self: center;
    padding: 0;
  }
  .home .grid-content {
    grid-area: content;
    margin-top: 0;
  }
}
