.howto {
  padding: 35px;
  background-color: #f5f5f5;
}

.howto__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.howto__frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #e9f2ff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.howto__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.howto__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
  width: 80%;
  color: #313235;
}

.howto__title strong {
  font-weight: 700;
}

.howto__media {
  width: 532px;
}

/* Responsive */
@media (max-width: 1024px) {
  .howto__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .howto__copy {
    order: 2;
  }

  .howto__media {
    order: 1;
    width: 100%;
  }
  
}