.feral-headliners {
  display: grid;
  gap: 24px;
}

.feral-headliners.is-reveal-pending {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.feral-headliners.is-reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feral-headliners__header {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.feral-headliners__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feral-headliners__title {
  margin: 0;
  color: #f5f1e7;
}

.feral-headliners__intro {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.feral-headliners__divider {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 18px;
}

.feral-headliners__divider-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 203, 214, 0), rgba(199, 203, 214, 0.8), rgba(199, 203, 214, 0));
}

.feral-headliners__divider-icon {
  width: clamp(40px, 5vw, 58px);
  height: auto;
  display: block;
}

.feral-headliners__grid {
  display: grid;
  gap: 20px;
  perspective: 1400px;
}

.feral-headliners__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(8, 10, 16, 0.88);
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 22px rgba(199, 203, 214, 0.16),
    0 0 34px rgba(199, 203, 214, 0.14),
    0 24px 56px rgba(3, 5, 10, 0.24);
  animation: feral-headliner-card-pulse 4.8s ease-in-out infinite;
  transform-style: preserve-3d;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s cubic-bezier(0.16, 1, 0.3, 1),
    translate 1s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feral-headliners.is-reveal-pending .feral-headliners__card {
  opacity: 0;
  filter: blur(12px);
  translate: 0 26px;
}

.feral-headliners.is-reveal-pending .feral-headliners__card.is-card-visible {
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
}

.feral-headliners__card::before {
  content: "";
  position: absolute;
  inset: -44px;
  z-index: 0;
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 233, 155, 0.26), transparent 40%),
    radial-gradient(circle at 22% 30%, rgba(199, 203, 214, 0.28), transparent 36%),
    radial-gradient(circle at 78% 76%, rgba(199, 203, 214, 0.24), transparent 36%);
  filter: blur(34px);
  opacity: 0.45;
  transform: scale(0.98);
  animation: feral-headliner-pulse 4.8s ease-in-out infinite;
  pointer-events: none;
}

.feral-headliners__media {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #080a12;
}

.feral-headliners__portrait {
  display: block;
  max-width: 88%;
  max-height: 92%;
  width: auto;
  height: auto;
}

.feral-headliners__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 20px 20px 24px;
  justify-items: center;
  text-align: center;
}

.feral-headliners__logo-badge {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  width: min(220px, 72%);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.82), rgba(8, 10, 16, 0.48));
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.feral-headliners__logo {
  display: block;
  width: 100%;
}

.feral-headliners__role {
  margin: 0;
  color: rgba(244, 233, 155, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feral-headliners__note {
  max-width: 26ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.feral-headliners__orb {
  display: none;
}

.feral-headliners__card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -28px;
  height: 86px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(199, 203, 214, 0.28), transparent 54%),
    linear-gradient(180deg, rgba(199, 203, 214, 0.08), rgba(199, 203, 214, 0));
  filter: blur(18px);
  opacity: 0.72;
  transform: scaleY(0.65);
  pointer-events: none;
}

@keyframes feral-headliner-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
    filter: blur(28px);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: blur(40px);
  }
}

@keyframes feral-headliner-card-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 18px rgba(199, 203, 214, 0.11),
      0 0 28px rgba(199, 203, 214, 0.1),
      0 24px 56px rgba(3, 5, 10, 0.24);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 0 24px rgba(199, 203, 214, 0.2),
      0 0 38px rgba(199, 203, 214, 0.16),
      0 28px 62px rgba(3, 5, 10, 0.28);
  }
}

@keyframes feral-headliner-orb-text-pulse {
  0%,
  100% {
    text-shadow:
      0 0 5px rgba(199, 203, 214, 0.42),
      0 0 12px rgba(199, 203, 214, 0.32),
      0 0 24px rgba(199, 203, 214, 0.16);
  }

  50% {
    text-shadow:
      0 0 8px rgba(199, 203, 214, 0.72),
      0 0 18px rgba(199, 203, 214, 0.54),
      0 0 36px rgba(199, 203, 214, 0.28);
  }
}

@media (min-width: 768px) {
  .feral-headliners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 84px;
    align-items: start;
  }

  .feral-headliners__media {
    min-height: 330px;
  }

  .feral-headliners__portrait {
    max-width: 90%;
    max-height: 96%;
  }

  .feral-headliners__content {
    gap: 12px;
    padding: 16px 18px 20px;
  }

  .feral-headliners__card--1 {
    transform: rotateY(18deg);
  }

  .feral-headliners__card--2 {
    transform: rotateY(-18deg);
  }

  .feral-headliners__card:hover,
  .feral-headliners__card:focus-within,
  .feral-headliners__card:active {
    transform: rotateY(0deg);
  }

  .feral-headliners__orb {
    position: absolute;
    left: 50%;
    top: 46%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border: 1px solid rgba(199, 203, 214, 0.2);
    border-radius: 50%;
    background:
      radial-gradient(circle at 35% 30%, rgba(199, 203, 214, 0.18), transparent 40%),
      linear-gradient(180deg, rgba(18, 23, 40, 0.98), rgba(8, 10, 20, 0.96));
    box-shadow:
      0 0 0 10px rgba(255, 255, 255, 0.03),
      0 0 42px rgba(199, 203, 214, 0.18),
      0 18px 36px rgba(3, 5, 10, 0.34);
    color: #f5f1e7;
    font-family: "Michroma", sans-serif;
    font-size: 0.84rem;
    line-height: 1;
    transform: translate(-50%, -50%);
    letter-spacing: 0.04em;
    text-align: center;
    overflow: visible;
  }

  .feral-headliners__orb-ring {
    position: absolute;
    inset: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    pointer-events: none;
    overflow: visible;
    transform: rotate(-90deg);
  }

  .feral-headliners__orb-ring-track,
  .feral-headliners__orb-ring-progress {
    fill: none;
    stroke-width: 5;
  }

  .feral-headliners__orb-ring-track {
    stroke: rgba(199, 203, 214, 0.12);
  }

  .feral-headliners__orb-ring-progress {
    stroke: rgba(199, 203, 214, 1);
    stroke-linecap: round;
    filter:
      drop-shadow(0 0 10px rgba(199, 203, 214, 0.85))
      drop-shadow(0 0 22px rgba(199, 203, 214, 0.74))
      drop-shadow(0 0 46px rgba(199, 203, 214, 0.58));
  }

  .feral-headliners__orb > span {
    display: block;
    min-height: 1em;
    position: relative;
    z-index: 1;
    color: #f5f1e7;
    text-shadow:
      0 0 6px rgba(199, 203, 214, 0.48),
      0 0 14px rgba(199, 203, 214, 0.38),
      0 0 28px rgba(199, 203, 214, 0.22);
    animation: feral-headliner-orb-text-pulse 2.8s ease-in-out infinite;
    transition: font-size 0.28s ease, letter-spacing 0.28s ease, transform 0.28s ease;
  }

  .feral-headliners__orb.is-charged > span {
    font-size: 1.9rem;
    letter-spacing: 0;
    transform: translateX(2px);
  }

  .feral-headliners__orb > small {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: max-content;
    max-width: 10ch;
    color: rgba(199, 203, 214, 0.82);
    font-family: "Michroma", sans-serif;
    font-size: 0.42rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    pointer-events: none;
  }

  .feral-headliners__orb::after {
    content: "";
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(199, 203, 214, 0.12);
    border-radius: 50%;
    pointer-events: none;
  }

}

@media (max-width: 767px) {
  .feral-headliners__media {
    min-height: 320px;
  }

  .feral-headliners__portrait {
    max-width: 92%;
    max-height: 94%;
  }
}
