.featured-visual,
.card-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #111;
}

.featured-visual > img,
.card-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.featured-visual > img {
  position: absolute;
  inset: 0;
}

.featured-visual::before {
  content: none;
}

.featured-visual::after,
.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 43%, rgba(5, 5, 5, .76));
  pointer-events: none;
}

.featured:hover .featured-visual > img,
.card:hover .card-visual > img {
  transform: scale(1.035);
}

.image-label,
.card-visual > span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 189, 0, .5);
  border-radius: 999px;
  background: rgba(5, 5, 5, .82);
  color: #ffbd00;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 115, 0, .32);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(5, 5, 5, .28));
  pointer-events: none;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 620px) {
  .featured-visual {
    min-height: 245px;
  }

  .card-visual {
    height: 205px;
  }

  .article-cover {
    margin-top: 28px;
    border-radius: 16px;
  }
}
