/* src/css/style.css */
.page_content_wrap {
  padding: 0;
}
.font-serif {
  font-family:
    Georgia,
    "Times New Roman",
    Times,
    serif;
}
#in-the-media-header {
  background: #0c2029;
  color: rgb(152, 166, 179);
}
#featured-in {
  display: flex;
  gap: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
#featured-in > span {
  font-weight: 600;
  color: #828282;
  font-size: 1.2rem;
  cursor: default;
}
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: hsl(215 12% 48%);
  transition: box-shadow 0.2s linear;
}
.media-card:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}
.media-card-accent {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}
#featured-items div:nth-child(n+1) .media-card-accent {
  background: hsl(200 65% 28%);
}
#featured-items div:nth-child(n+2) .media-card-accent {
  background: hsl(168 45% 40%);
}
#featured-items div:nth-child(n+3) .media-card-accent {
  background: hsl(35 85% 55%);
}
.media-card-source {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}
.filter-wrapper {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.filter-button {
  font-size: 0.9rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #f9f9f9 !important;
  color: #333 !important;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.2s, color 0.2s;
}
.filter-button:hover {
  background: white !important;
  border: 1px solid #999;
}
.filter-button.active {
  background: #193762 !important;
  color: #fff !important;
}
.infinite-scroll-component {
  overflow: initial !important;
}
/*# sourceMappingURL=bundle.css.map */
