.yc-hero-news {
  position: relative;
  max-width: 64ch;
  margin-top: 26px;
  padding: 18px 22px 19px 24px;
  border: 1px solid rgba(24, 167, 240, 0.22);
  border-left: 5px solid var(--cyan);
  border-radius: 0 22px 22px 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 255, 0.84));
  box-shadow: 0 18px 55px rgba(7, 21, 61, 0.1);
}

.yc-hero-news-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 7px;
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.085em;
  line-height: 1.25;
  text-transform: uppercase;
}

.yc-hero-news-label span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(24, 167, 240, 0.15);
  animation: yc-live-pulse 2.2s ease-out infinite;
}

.yc-hero-news-copy {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.62;
}

.yc-store-badge-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 9px;
  transition: transform 180ms ease, filter 180ms ease;
}

.yc-store-badge-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 16px rgba(7, 21, 61, 0.2));
}

.yc-store-badge-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

.yc-store-badge {
  display: block;
  width: auto;
}

.yc-store-badge--apple {
  height: 52px;
}

.yc-store-badge--google {
  height: 78px;
}

.yc-benefit-icon--atm::before {
  content: "ATM";
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.yc-benefit-icon--move::before,
.yc-benefit-icon--move::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 8px;
  border-top: 2px solid var(--navy);
}

.yc-benefit-icon--move::before {
  top: 15px;
  border-right: 2px solid var(--navy);
  transform: skewX(32deg);
}

.yc-benefit-icon--move::after {
  bottom: 13px;
  border-left: 2px solid var(--navy);
  transform: skewX(32deg);
}

.yc-benefit-icon--friends::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 12px 2px 0 -2px rgba(255, 255, 255, 0), 12px 2px 0 0 var(--navy);
  transform: translate(-6px, -6px);
}

.yc-benefit-icon--friends::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 26px;
  height: 11px;
  border: 2px solid var(--navy);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

@keyframes yc-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 167, 240, 0.35);
  }
  70%, 100% {
    box-shadow: 0 0 0 8px rgba(24, 167, 240, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yc-hero-news-label span {
    animation: none;
  }

  .yc-store-badge-link {
    transition: none;
  }
}

@media (max-width: 720px) {
  .yc-hero-news {
    margin-top: 22px;
    padding: 16px 18px 17px;
  }

  .yc-hero-news-copy {
    font-size: 0.98rem;
  }

  .yc-store-badge--apple {
    height: 48px;
  }

  .yc-store-badge--google {
    height: 72px;
  }
}
