.atlas-scene-update {
  position: relative;
  display: grid;
  width: min(35rem, 100%);
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 1rem;
  color: #17213b;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1rem 2.7rem rgba(68, 72, 111, 0.09);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.atlas-scene-update:has(.atlas-scene-update__art) {
  min-height: 7.2rem;
  padding-right: min(38%, 12rem);
}

.atlas-scene-update__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6453bd;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.atlas-scene-update__signal i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #62d5aa;
  box-shadow: 0 0 1rem rgba(98, 213, 170, 0.75);
}

.atlas-scene-update__title {
  margin-top: 0.35rem;
  color: #17213b;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.15;
}

.atlas-scene-update__summary {
  margin-top: 0.3rem;
  color: #627086;
  font-size: 0.82rem;
  line-height: 1.45;
}

.atlas-scene-update__art {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(36%, 11rem);
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(90deg, transparent, #000 34%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 34%);
  opacity: 0.82;
}

.atlas-news {
  position: relative;
  z-index: 3;
  width: min(92rem, calc(100% - 1rem));
  margin: -3rem auto clamp(4rem, 8vw, 8rem);
  padding: clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(1.3rem, 3vw, 2.4rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(235, 246, 255, 0.82));
  box-shadow: 0 2rem 6rem rgba(67, 70, 111, 0.12);
  backdrop-filter: blur(22px);
}

.atlas-news__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.atlas-news__kicker {
  margin: 0 0 0.45rem;
  color: #6857c4;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.atlas-news__heading h2 {
  margin: 0;
  color: #17213b;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.atlas-news__heading span {
  display: block;
  max-width: 42rem;
  margin-top: 0.65rem;
  color: #68758a;
}

.atlas-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.atlas-news__card {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  border: 1px solid rgba(69, 77, 110, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.62);
}

.atlas-news__art {
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
}

.atlas-news__body {
  position: relative;
  padding: 1rem;
}

.atlas-news__body small {
  color: #6c58cb;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-news__body h3 {
  margin: 0.45rem 0 0;
  color: #17213b;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.2;
}

.atlas-news__body p {
  margin: 0.5rem 0 0;
  color: #6b778c;
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .atlas-news__grid {
    grid-template-columns: 1fr;
  }

  .atlas-news__card {
    min-height: 0;
  }

  .atlas-news__art {
    height: min(44vw, 14rem);
  }
}

@media (max-width: 520px) {
  .atlas-scene-update:has(.atlas-scene-update__art) {
    padding-right: 1rem;
  }

  .atlas-scene-update__art {
    display: none;
  }
}
