#newsroom-header {
  background-color: var(--secondary-background-color);
  padding-top: 6rem;
  padding-bottom: 8rem;
  text-align: center;
  color: var(--text-color);
}

#newsroom-header h1 {
  font-family: "Ruda", sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}
#newsroom-header p {
  font-size: 1.875rem;
  line-height: 2.25rem;
  width: 40%;
  margin: auto;
}

.newsroom-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  background-color: var(--secondary-background-color);
  padding-left: 14rem;
  padding-right: 14rem;
  padding-bottom: 6rem;
}

.newsroom-articles > article {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.newsroom-articles > article > img {
  width: 100%;
}

.newsroom-articles > article > .article-content {
  background-color: var(--background-color);
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.newsroom-articles > article > .article-content > .article-title {
  background-color: var(--background-color);
}
.newsroom-articles > article > .article-content > .article-title > p {
  margin: 0;
  color: var(--tertiary-color);
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  line-height: 1.25rem;
}
.newsroom-articles > article > .article-content > .article-title > h2 {
  margin: 0.625rem auto;
  font-weight: 700;
  color: var(--text-color);
}
.newsroom-articles > article > .article-content > .article-body > p {
  font-size: 1rem;
  line-height: 1.25rem;
}
.newsroom-articles > article > .article-content > .article-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.newsroom-articles > article > .article-content > .article-footer > a {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1rem;
}
.newsroom-articles > article > .article-content > .article-footer > a::after {
  content: " ";
  display: inline-block;
  width: 100%;
  border-bottom: 2px solid var(--text-color);
  margin-top: 0;
}
.newsroom-articles > article > .article-content > .article-footer > a:hover {
  opacity: 0.5;
}

.button_container {
  display: flex;
  justify-content: center;
  padding-bottom: 6rem;
  background-color: var(--secondary-background-color);
  font-size: 1.075rem;
}

.button_container > button {
  background-color: var(--tertiary-color);
  color: var(--background-color);
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  border-radius: var(--border-radius);
}

.button_container > button:hover {
  opacity: 0.7;
}
