.video-showcase .video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 32px;
  margin-top: 46px;
}

.video-showcase .video-card {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 22px;
  background: #17313d;
  box-shadow: 0 20px 42px #00000033;
}

.video-showcase .video-frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 15%, #2d9a9580, transparent 35%),
    linear-gradient(145deg, #1a6267 0%, #0d3948 55%, #071d2b 100%);
}

.video-showcase .video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, #061725d9 100%);
}

.video-showcase .video-frame > div,
.video-showcase .video-play {
  position: relative;
  z-index: 1;
}

.video-showcase .video-frame span:not(.video-play) {
  display: inline-block;
  color: #b8dbd6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.video-showcase .video-frame h3 {
  margin: 10px 0 7px;
  font: 800 30px/1.08 Manrope, sans-serif;
  color: #fff;
}

.video-showcase .video-frame p {
  margin: 0;
  color: #d6e7e8;
  font-size: 14px;
  line-height: 1.5;
}

.video-showcase .video-play {
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 3px;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  background: #ffffff24;
  color: #fff;
  font-size: 19px;
  backdrop-filter: blur(8px);
}

.video-showcase .video-frame > video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #071d2b;
}

.video-showcase .video-frame::before {
  z-index: 1;
  pointer-events: none;
}

.video-showcase .video-frame > .video-caption {
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 700px) {
  .video-showcase .video-grid {
    grid-template-columns: minmax(0, 360px);
  }
}
