.atl-lgr {
  padding: 4rem 0.85rem;
  background: #fafafa;
  color: #353452;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .atl-lgr {
    padding: 6rem 1.5rem;
  }
}

.atl-lgr__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .atl-lgr__grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.atl-lgr__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: #353452;
}

.atl-lgr__col--right .atl-lgr__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.atl-lgr__lead {
  color: #137777;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625;
  margin: 0 0 1.25rem;
}

.atl-lgr__text {
  color: rgba(53, 52, 82, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}
.atl-lgr__text p {
  margin: 0 0 1.25rem;
}
.atl-lgr__text p:last-child {
  margin-bottom: 0;
}

.atl-lgr__note {
  color: var(--color-testo-attenuato);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}
.atl-lgr__note p {
  margin: 0 0 0.75rem;
}
.atl-lgr__note p:last-child {
  margin-bottom: 0;
}

.atl-lgr__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .atl-lgr__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.atl-lgr__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.atl-lgr__card:hover {
  border-color: rgba(19, 119, 119, 0.35);
  box-shadow: 0 8px 20px rgba(19, 119, 119, 0.08);
}

.atl-lgr__card-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(19, 119, 119, 0.1);
  color: #137777;
  font-size: 1.25rem;
}

.atl-lgr__card-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #353452;
  line-height: 1.25;
}
