.atl-gt {
  padding: 6rem 1.5rem;
  background: #fafafa;
  color: #353452;
}
@media (min-width: 768px) {
  .atl-gt {
    padding: 6rem 2rem 4.5rem;
  }
}

.atl-gt__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.atl-gt__header {
  text-align: center;
  margin-bottom: 4rem;
}

.atl-gt__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1111;
  margin: 0 0 1rem;
  color: #353452;
}
@media (min-width: 768px) {
  .atl-gt__title {
    font-size: 3rem;
    line-height: 1;
  }
}

.atl-gt__subtitle {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(53, 52, 82, 0.7);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
}

.atl-gt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .atl-gt__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.atl-gt__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.atl-gt__card:hover {
  border-color: rgba(19, 119, 119, 0.3);
  transform: translateY(-4px);
}
.atl-gt__card:hover .atl-gt__card-cta svg {
  transform: translate(2px, -2px);
}
.atl-gt__card:hover .atl-gt__card-icon {
  background: #dd4e41;
  color: #fff;
}

.atl-gt__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f3f3f3;
  color: #dd4e41;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.atl-gt__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: #353452;
}

.atl-gt__card-text {
  color: rgba(53, 52, 82, 0.7);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 1.5rem;
}

.atl-gt__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #137777;
  border-bottom: 1px solid #137777;
  padding-bottom: 0.25rem;
  width: fit-content;
  margin-top: auto;
}
.atl-gt__card-cta svg {
  transition: transform 0.3s ease;
}
