.profile-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(11, 105, 103, 0.16);
  border-radius: 10px;
  background: #dfe7e9;
  box-shadow: 0 22px 54px rgba(18, 45, 51, 0.16);
}

.profile-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #0b6967, #2388a0);
  content: "";
}

.profile-hero .profile-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
  box-shadow: none;
}

.profile-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(8, 55, 60, 0.86);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.profile-hero-media figcaption span {
  color: #addde0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-hero-media figcaption strong {
  margin-top: 2px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  .profile-hero-media figcaption {
    right: 12px;
    bottom: 12px;
  }
}
