.you-tube-channel {
  padding: 70px 15px 30px;
}

.you-tube-channel-container {
  max-width: 1320px;
  margin: 0 auto;
}

.you-tube-channel-main-video {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.you-tube-channel-main-video-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.you-tube-channel-main-video-description p {
  max-width: 456px;
}

.you-tube-channel-main-video-description p span {
  background-color: #ffc24b;
}

.you-tube-channel-main-video-description>div:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
  max-width: 553px;
  background: #f7f5f5;
}

.you-tube-channel-main-video-description>div:nth-of-type(1) p {
  font-family: 'Century Gothic';
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 26px);
  line-height: 100%;
  margin-left: 24px;
}

.you-tube-channel-main-video-description button {
  max-width: 208px;
  padding: 10px 30px;
  background: #de1f1f;
  font-family: 'Century Gothic';
  font-weight: 700;
  font-size: 14px;
  text-decoration-style: solid;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.you-tube-channel-main-video-description button span {
  border-bottom: 2px solid #ffffff;
  height: 20px;
}

.you-tube-channel-main-video-description button::before {
  content: '▶';
  margin: 0 8px 0;
  font-size: 26px;
}

.you-tube-channel-main-video-preview {
  position: relative;
  width: 55%;
  padding-bottom: 30.75%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.you-tube-channel-other-videos>div h3 {
  font-family: 'Century Gothic';
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 20px 0 5px;
}

.you-tube-channel-other-videos>div p {
  font-size: clamp(14px, 2.5vw, 16px);
}

.you-tube-channel-other-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 19px;
}

.video-item {
  width: 100%;
  max-width: 427px;
  /* Ограничение ширины */
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  cursor: pointer;
}

.you-tube-channel-nav-mob {
  display: none;
  justify-content: space-between;
  height: 55px;
  width: 100%;
  margin-top: 20px;
}

.you-tube-channel-nav-mob div:first-child,
.you-tube-channel-nav-mob div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffc24b;
  color: #ffc24b;
  width: 50px;
  height: 50px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

.you-tube-channel-nav-mob div:first-child:hover,
.you-tube-channel-nav-mob div:last-child:hover {
  background-color: #ffc24b;
  color: #ffffff;
}

.you-tube-channel .you-tube-channel-nav-mob-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 17px;
}

.you-tube-channel .swiper-pagination-bullet-active {
  background-color: #ffc24b;
}

@media screen and (max-width: 1024px) {
  .you-tube-channel {
    padding: 50px 15px 0;
  }

  .you-tube-channel-main-video {
    justify-content: center;
    flex-wrap: wrap;
  }

  .you-tube-channel-main-video-preview {
    width: 100%;
    padding-bottom: 57.75%;
  }

  .you-tube-channel-main-video-preview img {
    width: 100%;
    object-fit: contain;
    object-position: top;
  }

  .you-tube-channel-main-video-description button {
    max-width: 100%;
    justify-content: center;
    margin: 20px 0 30px;
  }

  .you-tube-channel-main-video-description>div:nth-of-type(1) {
    margin-top: 30px;
  }

  .you-tube-channel-nav-mob {
    display: flex;
  }
}