.section--description .section__title.section-title {
  margin-top: 65px;
  margin-bottom: 0;
  display: block;
}

.section.section--description:first-of-type>.section__wrapper,
.section.section--description>.section__wrapper {
  padding-top: 100px;
}

.description-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.h3.description-column-title,
.description-column-title {
  margin: 0 0 21px 0;
  font-family: Clear Sans;
  font-weight: 700;
  font-style: normal;
  font-size: 27px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #333;
  max-width: 700px;
}

.description-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.description-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.description-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.description-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #333;
}

.description-text p {
  margin: 0;
  font-family: 'Clear Sans';
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 1.5vw, 20px);
  line-height: clamp(12px, 1.5vw, 20px);
  letter-spacing: 0px;
  vertical-align: middle;
  color: #666;
  padding-right: 0;
}

.content-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.video-column {
  flex: 1;
  min-width: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .h3.description-column-title,
  .description-column-title {
    font-size: clamp(32px, 2.5vw, 40px);
    line-height: clamp(32px, 3vw, 40px);
    margin: 0 0 10px 0;
  }

  .description-text p {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: clamp(16px, 3vw, 20px);
  }

  .content-row {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .video-column {
    width: 100%;
  }
}

.lazy-video-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.lazy-video-player .lazy-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.lazy-video-player .lazy-video-play-button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #282828;
  transform: translate(-50%, -50%) translateX(3px);
}

.lazy-video-player:hover .lazy-video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(255, 255, 255, 1);
}

.lazy-video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.lazy-video-player.is-loaded .lazy-video-play-button {
  display: none;
}