#article-hero-section {
  height: 40rem;
  background-color: var(--light);
}

#article-hero-section .hero-section__gradient {
  display: none;
}

#article-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#article-hero-heading {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

#article-pre-heading-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#latest-article-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#latest-articles-container,
#article-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  row-gap: 6rem;
}

.article-preview-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.date-article {
  color: #7b7b7b;
  font-size: 1.3rem;
  font-weight: 500;
}

#latest-article-section .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.article-preview__meta-data {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.article-preview__title h3 {
  font-size: 1.8rem;
  color: var(--darkblue);
  font-weight: 500;
}

.article-preview-item {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.article-preview-item:hover img {
  transform: scale(1.05);
}

.article-preview-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ARCHIVE */

#archive-latest-container {
  display: flex;
  gap: 6rem;
}

#archive-latest-container-mobile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  display: none;
}

#archive-latest-preview-image,
#archive-latest-content {
  flex: 1;
}

#archive-latest-preview-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 16/9;
}

#archive-latest-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#archive-latest-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.archive-latest-btn-container {
  margin-top: 3rem;
}

.read-more-btn {
  font-size: 1.2rem;
  display: inline-flex;
  gap: 0.4rem;
  height: 3rem;
  align-items: center;
  padding: 0 1rem;
  background-color: var(--blue);
  color: white;
  border-radius: 2rem;
  font-weight: 600;
}

.read-more-btn svg {
  height: 1.2rem;
}

.read-more-btn span {
  width: 2rem;
  height: 2rem;
  background-size: 2rem 2rem;
  /* background-color: white; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 1000px) {
  #article-hero-section {
    height: auto;
  }

  #latest-articles-container,
  #article-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 700px) {
  #latest-articles-container,
  #article-container {
    grid-template-columns: 1fr;
  }

  #article-hero-container {
    align-items: start;
  }

  #archive-latest-container {
    display: none;
  }

  #archive-latest-container-mobile {
    display: flex;
  }

  #archive-hero-section {
    padding-bottom: 0;
  }
}
