<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">h1 {
  font-size: 72px;
}

.video-container {
  width: 560px;
  height: 315px;
}



.article-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--gutter-huge);
  padding: var(--gutter-huge);
}

.article {
  width: 40%;
  height: 600px;
  max-width: 500px;
  padding: var(--gutter-huge);
  gap: var(--gutter-large);
  border-radius: var(--gutter-large);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;

  &amp; p {
    text-decoration: underline;
  }

  &amp;:hover {
    &amp; p {
      text-decoration: none !important;
    }
  }

  &amp; p {
    font-size: 20px;
  }

  &amp; img {
    width: 340px;
    height: 240px;
    object-fit: cover;
  }
}

.section-video {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  height: calc(0.5 * var(--section-height));
  width: 100%;
}

@media screen and (width &lt;=1024px) {
  .article {
    width: 60%;
    min-width: 400px;
  }

  .video-container {
    width: 400px;
    height: 235px;
  }
}

@media screen and (width &lt;= 1366px) {

  .section-video {
    flex-direction: column;
    height: calc(1.25 * var(--section-height));
  }
}</pre></body></html>