.hero-visual {
  display: grid;
  gap: 22px;
}

.cover-image {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual aside {
  padding: 34px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 32px;
  border-radius: 20px;
  background: var(--navy);
}

.feature-image img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.feature-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px 25px 18px;
  color: white;
  background: linear-gradient(transparent, rgba(16, 40, 63, .92));
  font-weight: 800;
}

@media (max-width: 820px) {
  .cover-image { max-width: 560px; }
  .feature-image img { height: 260px; }
}

@media (max-width: 480px) {
  .cover-image { border-radius: 20px; }
  .feature-image img { height: 220px; }
  .feature-image figcaption { padding: 28px 18px 14px; font-size: .9rem; }
}
