.newsroom-home-grid {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 2rem;
}

.news-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.news-header h2 {
  text-wrap: wrap;
  -webkit-text-wrap: wrap;
  -moz-text-wrap: wrap;
}

.news-search-wrapper {
  margin-left: 1rem;
}

#news-search {
  font-family: Roboto, FontAwesome;
  font-size: 1rem;
  height: 36px;
}

.news-search-no-results {
  grid-column: span 6;
  text-align: center;
  margin-top: 3rem;
}
.news-search-no-results i {
  margin-right: 1rem;
}

.news-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: ease-in-out 0.4s all;
  color: hsl(0, 0%, 0%);
  border-radius: 24px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
.news-item:first-of-type {
  flex-direction: column;
}
.news-item-img {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  transition: ease-in-out 0.4s all;
  background-color: hsl(0, 0%, 0%);
}
.news-item-img-container {
  flex: 3;
  overflow: hidden;
  background-color: hsl(0, 0%, 0%);
  max-height: 200px;
  height: 200px;
  min-height: 200px;
}
.news-item-text {
  flex: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-item-text h2 {
  font-size: 2rem;
  line-height: 2.2rem;
  margin-bottom: 1.5rem;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -moz-line-clamp: 4;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
}
.news-item:hover {
  text-decoration: none;
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 88%);
}
.news-item:hover .news-item-img {
  transform: scale(1.05);
  opacity: 0.9;
}

.newsroom-home-archive-access {
  display: flex;
  justify-content: center;
  margin: 40px 0px;
  padding-top: 40px;
  border-top: 1px solid hsl(0, 0%, 73%);
}
.newsroom-home-archive-access .button {
  margin: 0;
}

.news-cat-filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
}
.news-cat-filter-wrapper {
  display: block;
  margin-bottom: 1.5rem;
  overflow-x: scroll;
  scrollbar-width: none;
  position: relative;
  left: -20px;
  width: calc(100% + 40px);
  padding: 0.5rem 20px;
}

.news-cat-filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--grey-light);
  background-color: rgba(0, 0, 0, 0.025);
  color: var(--grey);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: var(--font-weight-bold);
  border-radius: 25px;
  min-width: fit-content;
  text-wrap-mode: nowrap;
  -webkit-text-wrap-mode: nowrap;
  -moz-text-wrap-mode: nowrap;
  margin-right: 0.5rem;
}
.news-cat-filter-btn:last-of-type {
  margin-right: 0;
}
.news-cat-filter-btn.active {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 0px 0.5rem 0 rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

#newsroom-load-more {
  margin: 2rem auto 0 auto;
  font-size: 1rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

@media (prefers-color-scheme: dark) {
  .newsroom-home-grid a {
    color: white;
  }
  .news-item {
    background-color: hsl(214, 7%, 19%);
  }
  .news-item:hover {
    color: hsl(0, 0%, 100%);
    background-color: hsl(206, 9%, 10%);
  }
  .news-cat-filter-btn {
    color: var(--white);
  }
  .newsroom-post-readtime {
    color: hsl(0, 0%, 73%);
  }
}
@media screen and (min-width: 730px) {
  .newsroom-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsroom-home-grid .news-item {
    max-width: unset;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    flex-direction: row;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child .news-item-img {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child .news-item-img-container {
    max-height: 100%;
    height: 100%;
    max-height: 100%;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child h2 {
    font-size: 2.4rem;
    line-height: 2.6rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 950px) {
  .newsroom-home-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .newsroom-home-grid .news-item {
    grid-column: span 2;
    max-width: unset;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child {
    grid-column: span 6;
    flex-direction: row;
    width: 100%;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child .news-item-img {
    min-height: 350px;
    height: 100%;
    max-height: 100%;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child .news-item-img-container {
    max-height: 350px;
    height: 100%;
    max-height: 100%;
  }
  .newsroom-home-grid.unfiltered .news-item:first-child h2 {
    font-size: 2.8rem;
    line-height: 3rem;
  }
  .newsroom-home-grid.unfiltered .news-item:nth-child(2), .newsroom-home-grid.unfiltered .news-item:nth-child(3), .newsroom-home-grid.unfiltered .news-item:nth-child(4), .newsroom-home-grid.unfiltered .news-item:nth-child(5) {
    grid-column: span 3;
  }
}
content {
  margin-bottom: 0;
}

footer {
  margin-top: 0;
}

.newsroom-suggestion-box {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.newsroom-suggestion-box-container {
  position: relative;
  width: calc(100vw - 8px);
  left: calc(50% + 4px);
  margin-left: -50vw;
  padding: 40px 0px;
  background-color: hsl(0, 0%, 100%);
}
.newsroom-suggestion-box .button {
  margin: 0;
}
.newsroom-suggestion-box h1 {
  margin-bottom: 0.2rem;
}

@media (prefers-color-scheme: dark) {
  .newsroom-suggestion-box-container {
    background: hsl(214, 7%, 19%);
  }
}
.to-top {
  position: sticky;
  bottom: 20px;
  height: 50px;
  width: 50px;
  margin: 2rem 0 -25px auto;
  transition: ease 0.3s all;
  visibility: hidden;
  opacity: 0;
}
.to-top-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background-color: hsl(210, 95%, 33%);
  border-radius: 25px;
}
.to-top-button a {
  padding: 14px;
}
.to-top-button:hover {
  background-color: hsl(210, 95%, 23%);
  transition: all 0.15s ease;
}
.to-top-button i {
  color: hsl(0, 0%, 100%);
  font-size: 1.5rem;
  border-radius: 30px;
}

#page-top {
  position: relative;
  top: 10px;
}

.navigation {
  position: relative;
  border-bottom: 1px solid hsl(0, 0%, 93%);
}

.navbar-fixed {
  box-shadow: none;
}

.newsroom-nav {
  z-index: 2;
  position: sticky;
  top: 0;
  height: 50px;
  width: 100%;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.01);
  background-color: hsla(0, 0%, 100%, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  -moz-backdrop-filter: saturate(180%) blur(20px);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
}
.newsroom-nav-container {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 20px;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.newsroom-nav-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}
.newsroom-nav-title a {
  color: hsl(0, 0%, 0%);
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .navigation {
    border-bottom: 1px solid hsl(0, 0%, 0.3%);
  }
  .newsroom-nav {
    background-color: hsla(0, 0%, 0%, 0.7);
  }
  .newsroom-nav-title a {
    color: hsl(0, 0%, 100%);
  }
}/*# sourceMappingURL=newsroom.css.map */