/* News Category Filter Styles */

/* Use the existing recipe-quick-search styles for the container */

/* Use default button styling for Back to All News button */

/* Match recipe quick search styling */
.recipe-quick-search h4 {
  font-size: 2.5rem;
  margin-bottom: 0;
  white-space: nowrap;
}

/* Horizontal layout for news filter links */
.news-filter-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

/* Style for the news filter items */
.news-filter-item {
  transition: all 0.3s ease;
  position: relative;
  padding: 0 15px;
  margin: 5px 0;
  flex: 0 1 auto;
  text-align: center;
}

/* Add border-left to all items except the first one */
.news-filter-item:not(:first-child) {
  border-left: 1px solid #fff;
}

.news-filter-item a {
  font-family: "DIN Condensed", sans-serif !important;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.news-filter-item:hover a {
  text-decoration: underline;
}
.news-filter-item.active a {
  text-decoration: underline;
}

/* Ensure proper spacing between filter items */
.news-filter-item a {
  padding: 0 5px;
  display: block;
  width: 100%;
}

/* Responsive adjustments - changed to 1024px breakpoint */
@media (max-width: 1024px) {
  .recipe-quick-search.section-half-padding {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .recipe-quick-search .row > div {
    margin-bottom: 10px;
  }

  .recipe-quick-search h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    text-align: center;
  }

  /* Stack filter links vertically */
  .news-filter-links {
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
    width: 100%;
  }

  .news-filter-item {
    padding: 6px 10px;
    text-align: center;
    width: 100%;
    margin: 2px 0;
  }
  
  .news-filter-item a {
    font-size: 1.4rem;
  }

  /* Remove all borders on mobile and add vertical spacing */
  .news-filter-item:not(:first-child) {
    border-left: none;
    border-top: none;
    margin-top: 8px;
    padding-top: 0;
  }
}

/* Additional mobile adjustments for smaller screens */
@media (max-width: 576px) {
  .recipe-quick-search.section-half-padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .news-filter-item a {
    font-size: 1.3rem;
  }
  
  .news-filter-item {
    padding: 4px 8px;
    margin: 1px 0;
  }
  
  .news-filter-item:not(:first-child) {
    margin-top: 6px;
  }
}

.featured-post-tiny {
  font-weight: 100 !important;
  font-family: "DIN Condensed", sans-serif !important;
  font-size: 18px !important;
  line-height: 18px;
}

.post-sub-title {
  font-family: "DIN Condensed", sans-serif !important;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.5em;
  font-weight: 400 !important;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
