.video-object-section {
  margin: 80px 0 0;
}

.video-object-section * {
  box-sizing: border-box;
}

.video-object-section .title-head h2 {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: .04em;
  color: #2f4447;
  margin-bottom: 28px;
}

/* GRID */
.video-object-section .container-video-object {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.video-object-section .row-video-object {
  border-radius: 18px;
  overflow: hidden;
  background: #f3f2ee;
  aspect-ratio: 2 / 3;
  box-shadow: 0 8px 24px rgba(47, 68, 71, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-object-section .row-video-object:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(47, 68, 71, 0.12);
}

/* Video */
.video-object-section .video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-object-section .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PLAY BUTTON */
.video-object-section .play-button {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  cursor: pointer;
  z-index: 5;

  transform: translate(-50%, -50%) scale(1);
  transition: transform .22s ease, background .22s ease, opacity .22s ease;
}

.video-object-section .play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255,255,255,0.9);
}

.video-object-section .play-button img {
  display: none !important;
}

.video-object-section .play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #2f4447;
}

/* Responsive */
@media (max-width: 1024px) {
  .video-object-section .container-video-object {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .video-object-section .container-video-object {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .video-object-section .container-video-object {
    grid-template-columns: 1fr;
  }
}

