.videoblock {
  padding: 22px 0 15px 0;
}

.videoblock-title {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.videoblock-box {
  margin-right: -16px;
}
.videoblock-box__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-y: hidden;
  overflow-x: auto;
  padding-bottom: 30px;
  padding-right: 16px;
  scrollbar-width: thin;
  scrollbar-color: #DDDFE1 transparent;
}
.videoblock-box__inner::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
.videoblock-box__inner::-webkit-scrollbar-thumb {
  width: 6px;
  height: 6px;
  background-color: #DDDFE1;
  border-radius: 6px;
}

.videocard {
  position: relative;
  max-width: 480px;
  min-height: 250px;
  max-height: 330px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.play-video {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(51, 152, 219, 0.7);
  z-index: 2;
  left: 50%;
  top: 50%;
  transition: transform 0.12s linear;
  transform: translate(-50%, -50%);
  padding-left: 5px;
  padding-top: 2px;
}

.videocard-time {
  position: absolute;
  z-index: 2;
  border-radius: 6px;
  background: rgba(51, 152, 219, 0.7);
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 16px;
  top: 24px;
  right: 20px;
}

.videocard__poster {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
.videocard__poster::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.videocard__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.videocard-title {
  position: absolute;
  z-index: 2;
  left: 36px;
  bottom: 16px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  max-width: 374px;
}

@media screen and (min-width: 600px) {
  .videoblock {
    padding: 28px 0 15px 0;
  }
  .videocard {
    max-width: initial;
  }
  .videoblock-title {
    font-size: 22px;
    margin-bottom: 42px;
  }
  .videoblock-box {
    margin-right: -20px;
  }
  .videoblock-box__inner {
    gap: 25px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .videoblock {
    padding: 30px 0 48px 0;
  }
  .videoblock__container {
    max-width: 1366px;
  }
  .videoblock-title {
    font-size: 28px;
    margin-bottom: 62px;
  }
  .videoblock-box {
    margin-right: 0px;
  }
  .videoblock-box__inner {
    gap: 50px 25px;
    padding-right: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
  }
}
@media screen and (min-width: 1366px) {
  .videoblock {
    padding: 35px 0 25px 0;
  }
  .videocard {
    max-width: initial;
    height: 100%;
  }
  .videoblock-title {
    font-size: 32px;
    margin-bottom: 84px;
  }
  .videoblock-box {
    margin-right: 0px;
  }
  .videoblock-box__inner {
    gap: 69px 66px;
    padding-right: 0px;
  }
  .play-video {
    cursor: pointer;
    transition: all 0.12s linear;
  }
  .play-video:hover {
    transition: all 0.12s linear;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgb(51, 152, 219);
  }
}