.atl-csa {
  position: relative;
  background: #fff;
}

.atl-csa__hero-wrap {
  padding: 10px;
}

.atl-csa__hero {
  position: relative;
  box-sizing: border-box;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 3rem 1.5rem;
  background: #353452;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .atl-csa__hero {
    min-height: 440px;
    padding: 4rem 3.625rem;
  }
}

.atl-csa__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.atl-csa__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #353452 0%, rgba(53, 52, 82, 0.8) 45%, transparent 100%);
}

.atl-csa__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 896px;
  margin: 0;
  width: 100%;
}

.atl-csa__eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.atl-csa__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.atl-csa__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 672px;
  margin: 0;
}

.atl-csa__body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 0.85rem;
}
@media (min-width: 768px) {
  .atl-csa__body {
    padding: 6rem 3rem 2rem;
  }
}

.atl-csa__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .atl-csa__filters {
    margin-bottom: 4rem;
  }
}

.atl-csa__filter {
  min-height: 44px;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 1px solid #e5e5e5;
  background: #f9fafb;
  color: #4b4b57;
  cursor: pointer;
  transition: all 0.3s ease;
}
.atl-csa__filter:hover {
  background: #f0f0f0;
  color: #353452;
}
.atl-csa__filter.is-active {
  background: #353452;
  border-color: #353452;
  color: #fff;
  box-shadow: none;
}

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

.atl-csa__card {
  display: flex;
  flex-direction: column;
  background: #f9fafb;
  border: 1px solid #f0f0f0;
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.atl-csa__card:hover {
  border-color: #e1e4e8;
  box-shadow: 0 14px 30px rgba(53, 52, 82, 0.08);
  transform: translateY(-2px);
}
.atl-csa__card:hover .atl-csa__card-img {
  transform: scale(1.05);
}
.atl-csa__card:hover .atl-csa__card-title {
  color: #137777;
}
.atl-csa__card.is-hidden {
  display: none;
}

.atl-csa__card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1c1c26;
}

.atl-csa__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.7s ease;
}

.atl-csa__card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}

.atl-csa__card-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.atl-csa__card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
}

.atl-csa__card-client {
  display: block;
  color: #137777;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}

.atl-csa__card-title {
  color: #353452;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  transition: color 0.3s ease;
}
@media (min-width: 640px) {
  .atl-csa__card-title {
    font-size: 1.25rem;
  }
}

.atl-csa__card-desc {
  color: #6b6b76;
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.atl-csa__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: #137777;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  border-bottom: 1px solid #137777;
  padding-bottom: 0.15rem;
}
.atl-csa__card-cta svg {
  transition: transform 0.3s ease;
}

.atl-csa__card:hover .atl-csa__card-cta svg {
  transform: translateX(2px);
}

.atl-csa__empty {
  text-align: center;
  padding: 4rem 2rem;
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
}
.atl-csa__empty h2 {
  color: #353452;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.atl-csa__empty p {
  color: #6b6b76;
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto;
}

.atl-csa__empty-reset {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #137777;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.atl-csa__empty-reset:hover {
  background: #0d5c5c;
}

.atl-csa__cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}
@media (min-width: 768px) {
  .atl-csa__cta {
    padding: 0 3rem 6rem;
  }
}

.atl-csa__cta-inner {
  position: relative;
  overflow: hidden;
  background: #353452;
  border-radius: 24px;
  padding: 3rem 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .atl-csa__cta-inner {
    padding: 4.5rem 3.5rem;
  }
}
.atl-csa__cta-inner::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(19, 119, 119, 0.12);
  border-radius: 50%;
  filter: blur(80px);
}

.atl-csa__cta-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 640px;
}

.atl-csa__cta-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 2rem;
}

.atl-csa__cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.5rem;
  background: #fff;
  color: #353452;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.atl-csa__cta-btn:hover {
  background: #137777;
  color: #fff;
  transform: scale(1.03);
}

.editor-styles-wrapper .atl-csa__card.is-hidden {
  display: flex;
}

body:has(.atl-csa) .otgs-development-site-front-end {
  display: none !important;
}
