/* =========================
   THANKS SECTION
========================= */
.thanks-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.thanks-section__content {
  grid-column: 1 / span 5;
}

.thanks-section__title {
  margin: 0 0 12px;
  font-family: "Geist", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color:#5A6061;
}

.thanks-section__text {
  margin: 0 0 36px;
  max-width: 420px;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #5A6061;
}

.thanks-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #a9aaaa;
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A6061;
  transition: color var(--transition), border-color var(--transition);
}

.thanks-section__link:hover {
  color: var(--color-black);
  border-color: var(--color-black);
}

/* ========================= 
   RESPONSIVE 
========================= */
@media (max-width: 900px) {
  .thanks-section__content {
    grid-column: 1 / -1;
  }

  .thanks-section__text {
    max-width: 100%;
  }
}