.atl-gv {
  padding: 4rem 1.5rem;
  background: #fafafa;
}
@media (min-width: 768px) {
  .atl-gv {
    padding: 6rem 2rem;
  }
}

.atl-gv__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .atl-gv__grid {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }
}

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

.atl-gv__title-emphasis {
  color: #137777;
}

.atl-gv__content {
  max-width: 42rem;
  color: rgba(53, 52, 82, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}
.atl-gv__content p {
  margin: 0 0 1.5rem;
}
.atl-gv__content p:last-child {
  margin-bottom: 0;
}

.atl-gv__card {
  position: relative;
  background: #137777;
  border-radius: 40px;
  padding: 2rem 1.5rem;
  color: #fff;
  overflow: hidden;
}
@media (min-width: 768px) {
  .atl-gv__card {
    padding: 3rem;
  }
}

.atl-gv__card-title {
  position: relative;
  z-index: 1;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}

.atl-gv__card-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625;
  margin: 0 0 2.5rem;
}
@media (min-width: 768px) {
  .atl-gv__card-text {
    font-size: 1.125rem;
    line-height: 1.5556;
  }
}

.atl-gv__card-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: #fff;
  color: #137777;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.atl-gv__card-btn:hover {
  background: #f1f5f9;
  color: #137777;
  transform: translateY(-2px);
}
