/* NEWS PAGE FINAL POLISH - Matching Adonis IFE Style */

/* 1) Hero contrast overlay (no markup change required) */
.news-hero{
  position: relative;
  overflow: hidden;
}
.news-hero::before{
  content:"";
  position:absolute; inset:0;
  /* dark-to-light vertical fade for readability across monitors */
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.15) 40%, rgba(0,0,0,.0) 70%);
  pointer-events:none;
}
/* keep text above overlay */
.news-hero > *{ position: relative; z-index: 1; }

/* 2) Category link micro-animations + accessibility */
.news-filters nav a{
  display:inline-block;
  text-decoration:none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.news-filters nav a:hover,
.news-filters nav a:focus{
  border-bottom-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}
/* reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce){
  .news-filters nav a{ transition:none; }
}

/* 3) Card polish to match "glass" look on Home */
.news-card{
  /* existing border + radius retained */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.06) !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.18) !important;
}
.news-card h3{ margin-top:.25rem; }

/* 4) Headings readability on bright screens */
.news-grid h2{ color: #cfe8ff !important; }
.news-grid p{ color: rgba(255,255,255,.88) !important; }

/* 5) Responsive fine-tuning for small tablets/phones */
@media (max-width: 900px){
  .news-hero{ padding: 2.25rem 0 !important; }
  .news-hero p{ font-size: 1rem !important; }
  .news-links ul{ padding-left: 1rem; }
}

/* 6) Active link highlighting in menu */
.current-menu-item > a[aria-current="page"]{
  border-bottom: 2px solid rgba(255,255,255,.7);
  padding-bottom: .25rem;
}
