:root{
  --hs-vf-primary-bg:#FFF8E8;
  --hs-vf-secondary-bg:#FFF0C7;
  --hs-vf-gold:#D9A441;
  --hs-vf-deep-gold:#9A5A12;
  --hs-vf-premium-gold:#F4C95D;
  --hs-vf-maroon:#4A150C;
  --hs-vf-brown-1:#624023;
  --hs-vf-brown-2:#5d3b20;
  --hs-vf-brown-3:#3e200a;
  --hs-vf-dark:#2A1208;
  --hs-vf-card:#FFFDF6;
  --hs-vf-border:#E6BE67;
  --hs-vf-shadow:0 20px 48px rgba(74,21,12,.16);
}

.hs-section.hs-video-feedback{
  padding:80px 0;
  position:relative;
  background:var(--hs-vf-secondary-bg);
  overflow:hidden;
  font-family:'Poppins',Arial,sans-serif;
}

.hs-video-feedback *{
  box-sizing:border-box;
  font-family:'Poppins',Arial,sans-serif;
}

.hs-container{
  width:min(1180px,92%);
  margin:auto;
}

.hs-video-head{
  text-align:center;
  max-width:760px;
  margin:auto;
  margin-bottom:45px;
}

.hs-title-small{
  color:var(--hs-vf-deep-gold);
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:10px;
}

.hs-title{
  font-size:42px;
  line-height:1.15;
  color:var(--hs-vf-dark);
  margin:0 0 18px;
  font-weight:800;
}

.hs-title span{
  color:var(--hs-vf-gold);
}

.hs-text{
  font-size:16px;
  line-height:1.8;
  color:#684733;
  margin:0;
}

.hs-video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.hs-video-card{
  background:var(--hs-vf-card);
  border:1px solid rgba(230,190,103,.78);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(58,36,21,.08);
  cursor:pointer;
  transition:.3s ease;
  outline:none;
}

.hs-video-card:hover,
.hs-video-card:focus{
  transform:translateY(-7px);
  box-shadow:0 18px 42px rgba(98,64,35,.18);
  border-color:var(--hs-vf-brown-1);
}

.hs-video-thumb{
  height:230px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#fff,var(--hs-vf-secondary-bg));
}

.hs-video-thumb img,
.hs-video-placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hs-video-placeholder i{
  font-size:58px;
  color:var(--hs-vf-deep-gold);
}

.hs-video-thumb:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(62,32,10,.45));
}

.hs-video-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:2;
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--hs-vf-premium-gold),var(--hs-vf-gold),var(--hs-vf-deep-gold));
  color:#2A1208;
  font-size:40px;
  box-shadow:0 15px 34px rgba(0,0,0,.28);
  transition:.28s ease;
}

.hs-video-card:hover .hs-video-play{
  transform:translate(-50%,-50%) scale(1.08);
}

.hs-video-content{
  padding:24px;
}

.hs-video-content h3{
  color:var(--hs-vf-brown-1);
  font-size:20px;
  line-height:1.3;
  font-weight:900;
  margin:0 0 10px;
}

.hs-video-content p{
  color:#684733;
  line-height:1.7;
  font-size:14.5px;
  margin:0;
}

.hs-video-empty{
  background:#fff;
  border:1px solid rgba(230,190,103,.78);
  border-radius:22px;
  padding:28px;
  text-align:center;
  color:#684733;
}

.hs-video-popup{
  position:fixed;
  inset:0;
  background:rgba(20,10,4,.78);
  z-index:999999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.hs-video-popup.active{
  display:flex;
}

.hs-video-popup-box{
  width:min(920px,96vw);
  position:relative;
}

.hs-video-close{
  position:absolute;
  right:-10px;
  top:-52px;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}

.hs-video-frame-wrap{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  border:1px solid rgba(244,201,93,.42);
}

.hs-video-frame-wrap iframe,
.hs-video-frame-wrap video{
  width:100%;
  height:100%;
  display:block;
  border:0;
  background:#000;
}

@media(max-width:1024px){
  .hs-video-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:650px){
  .hs-section.hs-video-feedback{
    padding:60px 0;
  }
  .hs-title{
    font-size:32px;
  }
  .hs-video-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .hs-video-thumb{
    height:220px;
  }
  .hs-video-content{
    padding:20px;
  }
  .hs-video-close{
    right:0;
    top:-50px;
  }
  .hs-video-frame-wrap{
    border-radius:16px;
  }
}
