.atl-support {
  padding: 6rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .atl-support {
    padding: 8rem 0;
  }
}
.atl-support__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
.atl-support__header {
  max-width: 42rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .atl-support__header {
    margin-bottom: 3rem;
  }
}
.atl-support__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-jakarta);
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .atl-support__header h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .atl-support__header h2 {
    font-size: 3.75rem;
  }
}
.atl-support__header h2 strong {
  color: var(--color-teal);
  font-weight: 700;
}
.atl-support__desc {
  color: rgba(53, 52, 82, 0.7);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
}
.atl-support__desc p {
  margin: 0;
}
.atl-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .atl-support__grid {
    gap: 2rem;
  }
}
.atl-support__card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(53, 52, 82, 0.05);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .atl-support__card {
    padding: 3rem;
  }
}
.atl-support__card:hover {
  border-color: rgba(19, 119, 119, 0.3);
}
.atl-support__card h3 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jakarta);
  margin: 0 0 1rem;
}
.atl-support__card-glow {
  position: absolute;
  z-index: -1;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(19, 119, 119, 0.05);
  filter: blur(80px);
  pointer-events: none;
}
.atl-support__card-glow--top-right {
  top: -3rem;
  right: -3rem;
}
.atl-support__card-glow--bottom-right {
  bottom: -3rem;
  right: -3rem;
}
.atl-support__card-link {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  border-bottom: 1px solid var(--color-teal);
  padding-bottom: 4px;
  text-decoration: none;
  margin-top: 2rem;
  transition: opacity 0.15s ease;
}
.atl-support__card-link:hover {
  opacity: 0.8;
}
.atl-support__card-link:hover .atl-support__card-link-icon {
  transform: translate(0.15rem, -0.15rem);
}
.atl-support__card-link-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.atl-support__card-desc {
  position: relative;
  color: rgba(53, 52, 82, 0.7);
  font-weight: 300;
  line-height: 1.625;
  flex-grow: 1;
}
.atl-support__card-desc p {
  margin: 0;
}

.editor-styles-wrapper .atl-support__card.atl-fade-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

@media (max-width: 767px) {
  .atl-support__grid {
    grid-template-columns: 1fr;
  }
}
