.article-body {
  overflow-x: hidden;
}

.articles-index {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 2rem;
}

.articles-index > :not(.articles-orbit-field) {
  position: relative;
  z-index: 1;
}

.articles-orbit-field {
  position: absolute;
  z-index: 0;
  top: 8rem;
  left: 50%;
  width: min(76rem, 112vw);
  aspect-ratio: 1;
  translate: -50% 0;
  pointer-events: none;
  opacity: .72;
  mask-image: radial-gradient(circle, #000 46%, rgba(0, 0, 0, .72) 67%, transparent 82%);
}

.articles-orbit {
  position: absolute;
  border: 1px solid rgba(86, 105, 137, .38);
  border-radius: 50%;
  will-change: transform;
}

.articles-orbit-main {
  inset: 3%;
  animation: articles-orbit-spin 30s linear infinite;
}

.articles-orbit-inner {
  inset: 20%;
  border-color: rgba(77, 124, 255, .22);
  animation: articles-orbit-spin 22s linear infinite reverse;
}

.articles-orbit::before,
.articles-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.articles-orbit-main::before {
  inset: 8%;
  border: 1px solid rgba(200, 255, 69, .07);
}

.articles-orbit-main::after {
  inset: -1px;
  border-top: 1px solid rgba(200, 255, 69, .28);
  border-right: 1px solid transparent;
  transform: rotate(38deg);
}

.articles-orbit-inner::before {
  inset: 21%;
  border: 1px solid rgba(89, 109, 142, .2);
}

.articles-orbit i {
  position: absolute;
  display: block;
  width: 7px;
  aspect-ratio: 1;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(200, 255, 69, .72);
}

.articles-orbit i:nth-child(1) { top: 8%; left: 24%; }
.articles-orbit i:nth-child(2) { top: 37%; right: -4px; width: 5px; background: var(--blue); box-shadow: 0 0 14px rgba(77, 124, 255, .8); }
.articles-orbit i:nth-child(3) { right: 19%; bottom: 10%; width: 4px; }
.articles-orbit i:nth-child(4) { bottom: 27%; left: 1%; width: 5px; background: var(--blue); box-shadow: 0 0 14px rgba(77, 124, 255, .8); }
.articles-orbit-inner i:nth-child(1) { top: 18%; left: 8%; width: 5px; }
.articles-orbit-inner i:nth-child(2) { right: 6%; bottom: 22%; width: 4px; }

.articles-orbit-core {
  position: absolute;
  inset: 34%;
  border: 1px solid rgba(200, 255, 69, .1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 124, 255, .09), transparent 68%);
  animation: articles-core-pulse 5s ease-in-out infinite;
}

.article-tile {
  position: relative;
  overflow: hidden;
  transition: transform .36s cubic-bezier(.2, .75, .25, 1), border-color .36s ease, box-shadow .36s ease;
  animation: article-tile-enter .72s cubic-bezier(.2, .75, .25, 1) backwards;
}

.article-tile:nth-child(2) {
  animation-delay: .1s;
}

.article-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .36s ease;
}

@media (hover: hover) and (pointer: fine) {
  .article-tile:hover {
    z-index: 2;
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(200, 255, 69, .4);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .38), 0 0 34px rgba(77, 124, 255, .06);
  }

  .article-tile:hover::after {
    border-color: rgba(200, 255, 69, .16);
  }

  .article-tile:hover .article-banner-image {
    transform: scale(1.04);
  }
}

.article-tile:focus-within {
  z-index: 2;
  transform: translateY(-4px) scale(1.008);
  border-color: rgba(200, 255, 69, .42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .34);
}

@keyframes articles-orbit-spin {
  to { transform: rotate(1turn); }
}

@keyframes articles-core-pulse {
  0%, 100% { opacity: .42; transform: scale(.96); }
  50% { opacity: .9; transform: scale(1.04); }
}

@keyframes article-tile-enter {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .articles-orbit-field {
    top: 12rem;
    width: 150vw;
    opacity: .5;
  }
}

@media (max-width: 560px) {
  .articles-orbit-field {
    top: 15rem;
    width: 190vw;
    opacity: .38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .articles-orbit-main,
  .articles-orbit-inner,
  .articles-orbit-core,
  .article-tile {
    animation: none;
  }

  .article-tile:hover,
  .article-tile:focus-within {
    transform: none;
  }
}
