:root {
  --block-h: clamp(360px, 48vw, 720px);
}

/* General Stylings */

.main-image {
  width: 100%; /* was 10% */
  height: auto;
  display: block;
  max-width: 100%;
}

.news-article .container,
.news-article .container-fluid {
  padding: 0 4rem;
}

@media (max-width: 575px) {
  .news-article .container,
  .news-article .container-fluid {
    padding: 0 2rem;
  }
}

.news-article {
  animation: fade-in 1.2s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 50%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-grid {
  gap: 3rem;
}

.article-body {
  margin-top: 4rem !important;
}

.article-body p {
  margin-bottom: 24px;
}


/* Images and Videos Gallery */
.left {
  float: left;
}

.right {
  float: right;
}

.content::after {
  content: "";
  display: block;
  clear: both;
}

.content img,
.content video {
  display: block;
  height: auto;
  max-width: 100%;
}

@media (max-width: 575px) {
  .content img,
  .content video {
    float: none !important;
    width: 100% !important;
    margin: 0 0 1rem 0;
  }
}

@media (max-width: 768px) {
  .article-body {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .image-grid {
    display: block !important;
  }

  .image-column {
    width: 100% !important;
  }

  .image-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 50%;
    margin-bottom: 3rem;
  }
}