.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  border-radius: 0 0 2.5rem 0;
}

.hero-image {
  width: 100%;
  height: clamp(252px, 35vw, 455px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.03);
}

.hero-video {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
}

.portrait-card,
.feed-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
}

.crop {
  width: 100%;
  display: block;
  object-fit: cover;
}

.card-link,
.section-link,
.cta-ribbon a,
.footer-links a {
  position: relative;
  font-weight: 700;
  text-decoration: none;
}

.card-link::after,
.section-link::after,
.cta-ribbon a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 1px;
  margin-left: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.card-link:hover::after,
.card-link:focus-visible::after,
.section-link:hover::after,
.section-link:focus-visible::after,
.cta-ribbon a:hover::after,
.cta-ribbon a:focus-visible::after {
  transform: scaleX(1);
}

.feed-arrow-wrap {
  display: flex;
  justify-content: end;
  margin-top: 1.5rem;
}

.feed-arrow {
  width: 2rem;
  height: 2rem;
  border-top: 1.5px solid var(--ka-text);
  border-right: 1.5px solid var(--ka-text);
  transform: rotate(45deg);
}

@media (max-width: 767.98px) {
  .hero-frame {
    border-radius: 0 0 2rem 0;
  }
}
