main {
  margin: 0 auto;
  margin-bottom: 64px;
  max-width: min(1140px, 90%);

  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Header */
.news-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.news-date {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  
  gap: 8px;
}

.news-date img {
  filter: invert(28%) sepia(0%) saturate(0%) hue-rotate(186deg) brightness(102%) contrast(105%);
}

.news-main-title {
  font-size: 28px;
}

.news-divisor {
  position: relative;
  height: 1px;
  width: 100%;
  
  background-color: #d3d3d3;
}

.news-divisor-over {
  position: absolute;
  left: 0;
  top: 0;

  height: 3px;
  width: 6%;

  border-radius: 0 8px 8px 0;
  background-color: #F7C51E;
  transform: translateY(-50%);
}

.news-main-subtitle {
  font-size: 14px;
  color: #454545;
  font-weight: 700;
  font-style: italic;
}

/* Content */
.news-content {
  display: flex;
  gap: 24px;

  justify-content: center;
}

.news-content .news-content-main-image {
  max-width: 45%;

  border-radius: 16px;
  border: 2px solid #d3d3d3;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, .03);
}

.news-content-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-content-single {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-content p,
.news-content-single p,
.news-content li {
  font-size: 16px;
}

.news-content-single h3 {
  font-size: 24px;
}

.news-content img {
  max-width: 50%;
  border-radius: 16px;
  border: 2px solid #d3d3d3;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, .03);
}

.highlight {
  font-weight: 600;
}


@media (max-width: 1240px) {
  .news-content {
    flex-direction: column;
    align-items: center;
  }

  .news-content .news-content-main-image {
    max-width: 50%;
  }

  .news-content img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .news-content .news-content-main-image {
    max-width: 100%;
  }

  .news-content img {
    max-width: 100%;
  }

  .news-main-title {
    font-size: 22px;
  }

  .news-main-subtitle {
    font-size: 14px;
  }

  h3 {
    font-size: 18px;
  }
}