/* News Filter Tabs */
.news-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 2px solid #f0f0f0;
}

.filter-tab {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-tab a {
  display: block;
  padding: 12px 28px;
}

.filter-tab:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(179, 27, 27, 0.15);
  transform: translateY(-2px);
}

.filter-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, #8B1515 100%);
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(179, 27, 27, 0.3);
}

.filter-tab:active {
  transform: translateY(0);
}

/* News Category Badge Styles */
.news-category-info {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, #8B1515 100%);
}

.news-category-press {
  color: #fff;
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.news-category-event {
  color: #fff;
  background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.news-category-media {
  color: #fff;
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

/* Coming Soon News Item Styles */
.news-item-coming-soon {
  opacity: 0.6;
}

.news-item-coming-soon .news-date {
  opacity: 0.5;
}

.news-item-coming-soon .news-title {
  font-style: italic;
  color: #999;
}

.news-item-coming-soon .news-description {
  font-style: italic;
  color: #999;
}

/* News Item Hidden State */
.news-item.hidden {
  display: none;
}

/* Animation for filtered items */
.news-item.fade-in {
  animation: newsItemFadeIn 0.5s ease forwards;
}

@keyframes newsItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .news-filter-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
    padding-bottom: 15px;
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .news-filter-tabs {
    gap: 6px;
    margin-bottom: 30px;
  }
  .filter-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
}