/*------------------مقاطع التيكتوك-----------------*/
.pro-video-cards{
  padding:35px 15px;
  font-family:inherit;
  overflow:hidden;
}

.video-title-main{
  text-align:center;
  margin-bottom:25px;
}

.video-title-main h2{
  margin:0;
  color:#0f516f;
  font-size:26px;
  font-weight:900;
}

.video-title-main p{
  margin:8px 0 0;
  color:#555;
  font-size:15px;
}

.videos-row{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.video-card{
  position:relative;
  height:380px;
  border-radius:22px;
  overflow:hidden;
  display:block;
  box-shadow:0 16px 35px rgba(0,0,0,.16);
  background:#000;
  cursor:pointer;
}

.card-video-frame{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#000;
  pointer-events:none;
}

.video-click-layer{
  position:absolute;
  inset:0;
  z-index:2;
  background:transparent;
}

.video-caption{
  position:absolute;
  right:14px;
  left:14px;
  bottom:14px;
  z-index:3;
  background:rgba(255,255,255,.95);
  color:#111;
  border-radius:14px;
  padding:11px;
  font-size:13px;
  font-weight:800;
  line-height:1.7;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:999999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.video-modal.active{
  display:flex;
}

.video-box{
  position:relative;
  width:100%;
  max-width:390px;
  height:700px;
  background:#000;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.video-box iframe{
  width:100%;
  height:100%;
  border:0;
  background:#000;
}

.close-video{
  position:absolute;
  top:10px;
  left:10px;
  width:40px;
  height:40px;
  background:#fff;
  color:#000;
  border-radius:50%;
  text-align:center;
  line-height:40px;
  font-size:26px;
  text-decoration:none;
  z-index:10;
  font-weight:bold;
  cursor:pointer;
  border:0;
}

@media(max-width:1100px){
  .videos-row{
    grid-template-columns:repeat(3,1fr);
  }

  .video-card{
    height:340px;
  }
}

@media(max-width:768px){
  .videos-row{
    display:flex;
    overflow-x:auto;
    gap:14px;
    scroll-snap-type:x mandatory;
    padding-bottom:14px;
  }

  .video-card{
    min-width:220px;
    width:220px;
    height:320px;
    flex-shrink:0;
    scroll-snap-align:start;
  }

  .video-box{
    max-width:340px;
    height:610px;
  }
}
/*------------------مقاطع التيكتوك-----------------*/