.atl-go {
  padding: 3rem 1.5rem;
  background: #fff;
}
@media (min-width: 768px) {
  .atl-go {
    padding: 6rem 2rem;
  }
}

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

.atl-go__title {
  color: #137777;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1111;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .atl-go__title {
    font-size: 3rem;
    line-height: 1;
  }
}

.atl-go__content {
  color: rgba(53, 52, 82, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
}
.atl-go__content p {
  margin: 0 0 1.5rem;
}
.atl-go__content p:last-child {
  margin-bottom: 0;
}
.atl-go__content strong {
  color: #353452;
  font-weight: 700;
}

.atl-go__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.atl-go__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
