.alsman-video-section {
  padding-bottom: 80px;
  background: #fff;
}

.alsman-video-section .container {
  margin: 0 auto;
  padding: 0 15px;
}

.alsman-video-section .title {
  text-align: center;
}

.alsman-video-section .title h2 {
  font-size:clamp(22px, 2.1vw, 40px);
  font-weight:700;
  color: var(--title-text-color);
  letter-spacing: 0.01em;
  line-height:1;
  margin-bottom: 0;
}

.alsman-video-section .title p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-color);
  line-height: 1.6;
}

.alsman-video-section .video-wrapper {
  position: relative;
  display: block;
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--button-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alsman-video-section .video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.alsman-video-section .video-wrapper img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.alsman-video-section .video-wrapper:hover img {
  transform: scale(1.05);
}

.alsman-video-section .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: transparent;
  z-index: 1;
}

.alsman-video-section .video-play img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.alsman-video-section .video-play:hover img {
  transform: scale(1.2);
}


@media screen and (max-width: 1280px) {
.alsman-video-section{padding-bottom:60px;}
.alsman-video-section .title p{font-size:16px;line-height:1.5;}
  .alsman-video-section .video-play {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 768px) {
.alsman-video-section{padding-bottom:30px;}
.alsman-video-section .title p{font-size:15px;}
.alsman-video-section .video-play{width:50px;height:50px;}
.alsman-video-section .video-wrapper{margin-top:30px;}
}

@media screen and (max-width:480px) {
.alsman-video-section .title{text-align:left;}
.alsman-video-section .title p{font-size:14px;margin-top:10px;}
}


