.videos-section {
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 28px clamp(16px, 4vw, 48px) 36px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(13, 53, 141, 0.08);
}

.videos-section__title {
  margin: 0 0 20px;
  font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d358d;
  text-align: left;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}

.videos-section__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 16px;
}

.video-card {
  position: relative;
  display: block;
  border: 2px solid #fff;
  border-radius: 2px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.video-card:focus-visible {
  outline: 3px solid #0d358d;
  outline-offset: 3px;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.94);
  vertical-align: middle;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.12);
}

.video-card__play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 38px;
  border-color: transparent transparent transparent #f00;
  margin-left: 8px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.video-card__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .videos-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .videos-section__grid {
    grid-template-columns: 1fr;
  }

  .videos-section__title {
    font-size: 22px;
  }
}
