.home-questions {
  background: var(--cream);
  border-top: 1px solid rgb(36 32 31 / 12%);
  padding-block: 105px;
}

.home-questions-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 44px;
  max-width: 760px;
}

.home-questions-heading h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
}

.home-questions-heading > p:last-child {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

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

.home-questions-grid article {
  background: #fff;
  border: 1px solid rgb(36 32 31 / 16%);
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 30px;
}

.home-questions-grid article:last-child {
  grid-column: 1 / -1;
}

.home-questions-grid h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}

.home-questions-grid p {
  line-height: 1.7;
  margin: 0 0 20px;
}

.home-questions-grid a {
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-bottom: 4px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .home-questions {
    padding-block: 76px;
  }

  .home-questions-grid {
    grid-template-columns: 1fr;
  }

  .home-questions-grid article,
  .home-questions-grid article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }
}
