.ga-home-latest-mounted nav a[data-ga-home-latest-nav] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px !important;
  border: 1px solid rgba(123, 231, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(78, 218, 255, 0.1), rgba(190, 84, 255, 0.09));
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(98, 215, 255, 0.08);
}

.ga-home-latest-mounted nav a[data-ga-home-latest-nav]::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8deaff;
  box-shadow: 0 0 0 3px rgba(141, 234, 255, 0.1), 0 0 14px rgba(141, 234, 255, 0.8);
}

.ga-home-latest-mounted nav a[data-ga-home-latest-nav]::after {
  content: "NEW";
  position: absolute;
  right: -5px;
  top: -8px;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #f7fbff;
  color: #060810;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
  font-size: 6px;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
}

#ga-latest-portal,
#ga-latest-portal * {
  box-sizing: border-box;
}

#ga-latest-portal {
  position: absolute;
  z-index: 48;
  top: 80px;
  right: clamp(18px, 3.2vw, 54px);
  isolation: isolate;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 38px;
  gap: 13px;
  align-items: center;
  width: min(445px, calc(100vw - 36px));
  min-height: 102px;
  overflow: hidden;
  padding: 11px 12px 11px 11px;
  border: 1px solid rgba(151, 229, 255, 0.27);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(94, 224, 255, 0.18), transparent 36%),
    radial-gradient(circle at 88% 76%, rgba(213, 79, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(5, 14, 25, 0.94), rgba(14, 7, 24, 0.94));
  color: #f8fbff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 50px rgba(95, 210, 255, 0.09);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  transform-origin: top right;
  animation: ga-latest-portal-arrive 720ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

#ga-latest-portal::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  bottom: -60%;
  left: -35%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: rotate(16deg);
  animation: ga-latest-portal-sheen 7s ease-in-out 1.2s infinite;
  pointer-events: none;
}

#ga-latest-portal::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.4px);
  background-size: 27px 27px;
  mask-image: linear-gradient(100deg, transparent 5%, #000 48%, transparent 96%);
  pointer-events: none;
}

#ga-latest-portal:hover,
#ga-latest-portal:focus-visible {
  outline: none;
  transform: translateY(-3px) scale(1.008);
  border-color: rgba(167, 236, 255, 0.58);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 72px rgba(147, 111, 255, 0.18);
}

.ga-latest-portal__media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 96px;
  height: 76px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #02040a;
  box-shadow: inset 0 0 22px rgba(114, 221, 255, 0.08), 0 10px 26px rgba(0, 0, 0, 0.28);
}

.ga-latest-portal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.ga-latest-portal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.ga-latest-portal__media img:first-child {
  object-position: 48% center;
}

.ga-latest-portal__media img:last-child {
  object-position: 58% center;
}

#ga-latest-portal:hover .ga-latest-portal__media img {
  transform: scale(1.055);
  filter: saturate(1.2) contrast(1.08);
}

.ga-latest-portal__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ga-latest-portal__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  color: #a9efff;
  font-size: 8px;
  font-weight: 920;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ga-latest-portal__kicker i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #b9ff70;
  box-shadow: 0 0 11px rgba(185, 255, 112, 0.85);
}

.ga-latest-portal__copy strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.ga-latest-portal__story {
  display: block;
  margin-top: 5px;
  color: rgba(239, 246, 255, 0.62);
  font-size: 10px;
  line-height: 1.38;
}

.ga-latest-portal__action {
  display: block;
  margin-top: 6px;
  color: #c8ff76;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ga-latest-portal__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

#ga-latest-portal:hover .ga-latest-portal__arrow {
  transform: translate(2px, -2px);
  background: rgba(255, 255, 255, 0.15);
}

@keyframes ga-latest-portal-arrive {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ga-latest-portal-sheen {
  0%, 58% { left: -35%; opacity: 0; }
  66% { opacity: 1; }
  82%, 100% { left: 118%; opacity: 0; }
}

@media (max-width: 1080px) {
  #ga-latest-portal {
    width: min(382px, calc(100vw - 30px));
    grid-template-columns: 82px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .ga-latest-portal__media {
    width: 82px;
    height: 68px;
  }

  .ga-latest-portal__story {
    display: none;
  }
}

@media (max-width: 760px) {
  #ga-latest-portal {
    top: 72px;
    left: 12px;
    right: 12px;
    width: auto;
    min-height: 76px;
    grid-template-columns: 66px minmax(0, 1fr) 32px;
    gap: 9px;
    padding: 9px 10px 9px 9px;
    border-radius: 17px;
    transform-origin: top center;
  }

  .ga-latest-portal__media {
    width: 66px;
    height: 56px;
    border-radius: 12px;
  }

  .ga-latest-portal__kicker {
    margin-bottom: 3px;
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .ga-latest-portal__copy strong {
    font-size: 15px;
  }

  .ga-latest-portal__action {
    margin-top: 4px;
    font-size: 7px;
  }

  .ga-latest-portal__arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ga-latest-portal,
  #ga-latest-portal::before,
  #ga-latest-portal *,
  .ga-home-latest-mounted nav a[data-ga-home-latest-nav] {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
#ga-home-latest-section,
#ga-home-latest-section * {
  box-sizing: border-box;
}

#ga-home-latest-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(72px, 10vw, 132px) 0 0;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 10% 0%, rgba(102, 230, 255, 0.2), transparent 34%),
    radial-gradient(circle at 96% 22%, rgba(188, 93, 255, 0.2), transparent 31%),
    linear-gradient(145deg, #07101a 0%, #030509 48%, #0e0715 100%);
  color: #f7fbff;
  box-shadow: 0 32px 100px rgba(2, 8, 18, 0.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#ga-home-latest-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.ga-home-latest__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.ga-home-latest__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #8deaff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ga-home-latest__kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

#ga-home-latest-title {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: clamp(35px, 5vw, 68px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.ga-home-latest__intro {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(236, 244, 255, 0.68);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.68;
}

.ga-home-latest__count {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 38px rgba(135, 226, 255, 0.08);
  text-align: center;
}

.ga-home-latest__count strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.ga-home-latest__count span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ga-home-latest__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
}

.ga-home-latest__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.26);
}

.ga-home-latest__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #010205;
}

.ga-home-latest__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 4, 8, 0.76), transparent 48%);
  pointer-events: none;
}

.ga-home-latest__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ga-home-latest__card:hover .ga-home-latest__media img {
  transform: scale(1.035);
}

.ga-home-latest__number {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 7, 12, 0.58);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ga-home-latest__body {
  padding: clamp(21px, 3vw, 30px);
}

.ga-home-latest__body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ga-home-latest__body p {
  margin: 13px 0 20px;
  color: rgba(236, 244, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.ga-home-latest__open,
.ga-home-latest__sequence-link,
.ga-home-latest__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.ga-home-latest__open::after,
.ga-home-latest__sequence-link::after,
.ga-home-latest__cta::after {
  content: "→";
  transition: transform 180ms ease;
}

.ga-home-latest__open:hover::after,
.ga-home-latest__sequence-link:hover::after,
.ga-home-latest__cta:hover::after {
  transform: translateX(3px);
}

.ga-home-latest__sequence {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: clamp(18px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(123, 229, 255, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.ga-home-latest__sequence-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(149, 224, 255, 0.24);
  border-radius: 18px;
  color: #a9efff;
  background: rgba(83, 210, 255, 0.08);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ga-home-latest__sequence-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 2.3vw, 25px);
  letter-spacing: -0.02em;
}

.ga-home-latest__sequence-copy span {
  display: block;
  margin-top: 6px;
  color: rgba(236, 244, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.ga-home-latest__sequence-link {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.ga-home-latest__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(28px, 5vw, 48px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.ga-home-latest__foot p {
  max-width: 560px;
  margin: 0;
  color: rgba(236, 244, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.ga-home-latest__cta {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f7fbff;
  color: #05080d;
  box-shadow: 0 14px 44px rgba(112, 225, 255, 0.16);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .ga-home-latest-mounted .ga-maven-panel {
    bottom: 108px;
  }

  #ga-home-latest-section {
    border-radius: 25px;
  }

  .ga-home-latest__head {
    display: block;
  }

  .ga-home-latest__count {
    width: auto;
    height: auto;
    display: inline-flex;
    gap: 8px;
    margin-top: 22px;
    padding: 10px 14px;
    border-radius: 999px;
  }

  .ga-home-latest__count strong {
    font-size: 18px;
  }

  .ga-home-latest__count span {
    margin: 0;
  }

  .ga-home-latest__grid {
    grid-template-columns: 1fr;
  }

  .ga-home-latest__sequence {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ga-home-latest__sequence-link {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .ga-home-latest__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .ga-home-latest__cta {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ga-home-latest-section * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
