/* Filter and Search Bar */
.filter-search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-input {
  flex: 3; /* Takes up 3x the space of the dropdown */
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.filter-dropdown {
  flex: 1; /* Takes up 1x the space of the input */
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  display: flex;
  align-items: center;
align-items: flex-start;
  /*border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 5px;
  background-color: #f9f9f9;*/
}

.news-image {
  flex: 0 0 25%; /* Image takes up 10% of the width */
  margin-right: 1rem;
}

.news-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.news-content {
  flex: 1; /* Content takes up the remaining 90% */
}

.news-title {
  font-family: corporate-s, sans-serif;
}

.news-title:hover {
  text-decoration: underline;
}

.news-description {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.news-tags {
  margin-bottom: 0.5rem;
}

.news-tag {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.news-date {
  font-size: 1.2rem;
  color: #999;
  margin-top: 0.5rem;
}

.news-content {
   h2 {
      line-height: 1.1em !important;
      font-size: 1.2em !important;
      margin: 0 !important;
      padding: 0 !important;
      color: #494D4F;
   }
}

.newsitemcat {
   display: flex;
}

@media (min-width: 992px) {
  .newsitemcat {
    font-size: 0.8em;
  }
}
@media (min-width: 768px) {
  .newsitemcat {
    font-size: 0.7em;
  }
}

.newsitemcatitem {
  background: #DB363D;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9em;
  width: fit-content;
  padding: 8px 10px 5px 10px;
  line-height: 1em;
  border-radius: 5px;
  margin: 0 0.4em 0.4em 0;
  float: left;
border: none !important;
}
