/* ==============================
   News Module - Industrial Theme
   Based on themes/themeBuilder/css/twisted-metal.css
   ============================== */
@import url("https://fonts.googleapis.com/css2?family=Quantico:wght@400;700&family=Electrolize:wght@400;700&family=Bangers&display=swap");

/* ==============================
   Login Module Bootstrap 3 Compatibility
   ============================== */

/* Bootstrap 3 Compatible Navbar Styles */
.navbar-default {
  background: rgba(26, 26, 26, 0.95) !important;
  border-bottom: 1px solid rgba(90, 108, 125, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-default .navbar-brand {
  padding: 10px 15px;
  margin: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-default .navbar-brand img {
  height: 40px;
  width: auto;
  max-height: 40px;
  display: block;
  transition: all 0.3s ease;
}

.navbar-default .navbar-brand:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: var(--text-primary) !important;
  text-shadow: 0 0 15px rgba(74, 144, 226, 0.6);
}

.navbar-default .navbar-nav > li > a {
  color: var(--text-primary);
  font-family: 'Electrolize', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: var(--text-primary);
  background: rgba(74, 114, 226, 0.1);
  text-decoration: none;
}

.navbar-default .navbar-toggle {
  border: 1px solid rgba(120, 130, 140, 0.3);
  background: transparent;
  border-radius: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: rgba(74, 114, 226, 0.1);
  border-color: rgba(74, 144, 226, 0.4);
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: var(--text-primary);
}

.navbar-default .navbar-collapse {
  border-top: none;
  box-shadow: none;
  background: rgba(26, 26, 26, 0.98);
}

/* Mobile navbar adjustments */
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: var(--text-secondary);
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    background: rgba(74, 114, 226, 0.1);
  }
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.98) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled .navbar-brand {
  font-size: 1.5rem;
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
  .navbar-default .navbar-brand img {
    height: 32px;
    max-height: 32px;
  }

  .navbar.scrolled .navbar-brand img {
    height: 28px;
    max-height: 28px;
  }
}

@media (max-width: 480px) {
  .navbar-default .navbar-brand img {
    height: 28px;
    max-height: 28px;
  }

  .navbar.scrolled .navbar-brand img {
    height: 24px;
    max-height: 24px;
  }
}

/* ==============================
   Sticky Header (Matching Login Page)
   ============================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--industrial-dark) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* ==============================
   Footer Links Section (Matching Login Page)
   ============================== */

/* Sticky Footer - Landing Page Footer Links */
.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-links .footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
}

.footer-links .footer-link:hover {
  color: var(--accent-orange-dark);
  text-decoration: underline;
}

/* Footer Tag */
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer-tag:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.footer-tag--gold {
  border-color: rgba(255, 215, 0, 0.35);
  color: #ffe9a3;
}

.footer-tag--ocean {
  border-color: rgba(64, 160, 255, 0.35);
  color: #cfe8ff;
}

.tag-emoji {
  font-size: 14px;
  line-height: 1;
}

/* Responsive footer links */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .footer-links .footer-link {
    font-size: 0.75rem;
    padding: 0.125rem 0.25rem;
  }
}

/* Global footer styles (kept for backwards compatibility) */
.footer-links-section {
  border-top: 1px solid rgba(107, 31, 9, 0.3);
}

.footer-links-section .footer-links {
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

/* Professional Color Variables - Industrial Theme (Matching Login Module) */
:root {
  /* Base Colors - Sophisticated Dark Theme */
  --industrial-dark: #1a1a1a;
  --industrial-darker: #0f0f0f;
  --industrial-medium: #2c2c2c;
  --industrial-light: #3b4a5c;

  /* Text Colors - Improved Readability */
  --text-primary: #e0e0e0;
  --text-secondary: #b8c5d1;
  --text-muted: #8a9ab0;
  --text-accent: #6b1f09;

  /* Professional Accent Colors */
  --accent-orange-dark: #6b1f09;
  --accent-secondary: #5a5a7a;
  --accent-tertiary: #4a6a5a;
  --accent-warning: #aa7a26;
  --accent-danger: #aa5550;
  --accent-dark: #2a2a2a;
  --accent-dark-2: #1a1a1a;
  --accent-gold: #5a5a7a;

  /* Border & Shadow Variables */
  --border-silver: 1px solid rgba(102, 112, 121, 0.15);
  --border-steel: #5a6c7d;
  --border-dark: #1a1a1a;
  --shadow: rgba(15, 20, 25, 0.8);
  --shadow-glow: rgba(74, 114, 226, 0.15);
  --shadow-light: rgba(255, 255, 255, 0.1);
}

/* Body and Container */
body {
  background-color: var(--industrial-dark);
  color: var(--text-primary);
  font-family: "Quantico", sans-serif;
  line-height: 1.6;
}

.game-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Section Spacing */
.news-hero-section,
.news-grid-section {
  padding: 100px 0;
}

/* Container Max Width */
.news-hero-section .container,
.news-grid-section .container {
  max-width: 1400px;
}

/* Hero Section - Modern Industrial Design */
.news-hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0,0,0,0.2) 50%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%),
    url('/themes/themeBuilder/images/hero-bg.svg') no-repeat center center/cover;
  color: var(--text-primary);
  text-align: center;
  padding: 200px 0 150px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.news-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(107, 31, 9, 0.02) 50px, rgba(107, 31, 9, 0.02) 52px);
  pointer-events: none;
  opacity: 0.3;
}

/* Accent glow */
.news-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange-dark), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Headline */
.news-hero-section h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--accent-orange-dark);
  margin-bottom: 2rem;
  text-shadow:
    0 0 30px rgba(107, 31, 9, 0.6),
    3px 3px 6px rgba(0, 0, 0, 0.8);
  font-family: 'Bangers', cursive;
  letter-spacing: 4px;
  line-height: 1.1;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Lead Text */
.news-hero-section .lead {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-family: "Quantico", sans-serif;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Stats - Industrial Dashboard Style */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 2px solid rgba(107, 31, 9, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 120px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 31, 9, 0.3);
  border-color: rgba(107, 31, 9, 0.6);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-orange-dark);
  font-family: 'Electrolize', monospace;
  text-shadow: 0 0 20px rgba(107, 31, 9, 0.8);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Quantico", sans-serif;
}

.stat-item:hover .stat-number {
  text-shadow: 0 0 30px rgba(107, 31, 9, 1);
  transform: scale(1.05);
}

/* Section Headers */
.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-orange-dark);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow:
    0 0 30px rgba(107, 31, 9, 0.6),
    2px 2px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  font-family: 'Bangers', cursive;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-orange-dark), transparent);
  margin: 20px auto 0;
  box-shadow: 0 0 10px rgba(107, 31, 9, 0.5);
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  font-family: "Quantico", sans-serif;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* News Grid Section */
.news-grid-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
  position: relative;
  overflow: hidden;
}

/* Background accent */
.news-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.02) 2px, rgba(107, 31, 9, 0.02) 4px);
  pointer-events: none;
  opacity: 0.5;
}

/* News List Layout - Full Width Articles */
.news-list {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

/* News Article - Full Width Design */
.news-article {
  margin-bottom: 50px;
  padding: 0;
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(107, 31, 9, 0.2);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  min-height: 300px;
}

.news-article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 40px rgba(107, 31, 9, 0.3),
    0 0 60px rgba(107, 31, 9, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* News Article Header */
.news-article-header {
  padding: 35px 40px 20px;
  border-bottom: 2px solid rgba(107, 31, 9, 0.2);
}

/* News Article Meta Information */
.news-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: "Electrolize", monospace;
}

.news-author {
  color: var(--accent-orange-dark);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.9;
}

.news-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.news-article:hover .news-author {
  opacity: 1;
  text-shadow: 0 0 10px rgba(107, 31, 9, 0.8);
}

/* News Article Title */
.news-article h3.news-title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.3;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.news-article:hover .news-title {
  color: var(--accent-orange-dark);
  text-shadow: 0 0 20px rgba(107, 31, 9, 0.6);
  transform: translateY(-3px);
}

/* News Content - Full Width */
.news-article .news-content {
  flex: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 30px 40px 40px;
  transition: all 0.3s ease;
}

.news-article .news-content p {
  margin-bottom: 20px;
}

.news-article .news-content p:last-child {
  margin-bottom: 0;
}

.news-article:hover .news-content {
  color: rgba(255, 255, 255, 0.85);
}

/* News Article Separator */
.news-article-separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange-dark), transparent);
  box-shadow: 0 0 10px rgba(107, 31, 9, 0.5);
  margin: 30px auto;
  width: 60%;
}

/* Alternative grid styles kept for compatibility */
.news-card {
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(107, 31, 9, 0.2);
  border-radius: 12px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.load-more-btn {
  background: linear-gradient(135deg, var(--accent-orange-dark) 0%, #c44820 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  box-shadow:
    0 8px 25px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.load-more-btn:hover::before {
  left: 100%;
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #c44820 0%, var(--accent-orange-dark) 100%);
  transform: translateY(-3px);
  box-shadow:
    0 12px 35px rgba(107, 31, 9, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.load-more-btn:active {
  transform: translateY(-1px);
}

/* Staggered Animation For Cards */
.news-card {
  opacity: 0;
  animation: fadeInScaleCard 0.8s ease-out forwards;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }
.news-card:nth-child(6) { animation-delay: 0.6s; }
.news-card:nth-child(7) { animation-delay: 0.7s; }
.news-card:nth-child(8) { animation-delay: 0.8s; }
.news-card:nth-child(9) { animation-delay: 0.9s; }
.news-card:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInScaleCard {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==============================
   Responsive Design
   ============================== */

@media (max-width: 1200px) {
  :root {
    --section-spacing: 80px;
    --header-font-size: 2.5rem;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  /* Grid removed for full-width articles */

  .load-more-section {
    padding: 20px;
  }

  .load-more-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 60px;
    --header-font-size: 2.2rem;
  }

  .news-hero-section {
    min-height: 60vh;
    padding: 160px 0 120px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .news-hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.8rem;
  }

  .news-hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    min-width: 100px;
    padding: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .news-grid-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 3rem;
  }

  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .news-card {
    padding: 25px;
    min-height: 350px;
  }

  .news-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
    --header-font-size: 1.8rem;
  }

  .news-hero-section {
    min-height: 50vh;
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero-content {
    padding: 0 15px;
  }

  .news-hero-section h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .news-hero-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
    padding: 15px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .news-card {
    padding: 25px 20px;
    min-height: 320px;
  }

  .news-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 12px;
  }

  .news-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .news-content {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .load-more-btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --header-font-size: 1.6rem;
  }

  .news-hero-section {
    padding: 100px 0 60px;
  }

  .news-hero-section h1 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
  }

  .news-hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }

  .news-card {
    padding: 20px 15px;
  }

  .news-title {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .news-content {
    font-size: 0.9rem;
  }

  .load-more-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .load-more-section {
    padding-top: 20px;
  }
}

/* ==============================
   Accessibility & Performance
   ============================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .news-card {
    opacity: 1 !important;
  }

  .hero-content {
    animation: none !important;
  }

  .section-title,
  .section-subtitle {
    animation: none !important;
  }
}

/* High contrast support */
@media (prefers-contrast: more) {
  .news-card {
    border-color: #ffffff !important;
  }

  .news-title {
    color: #ffffff !important;
  }

  .news-content {
    color: #ffffff !important;
  }

  .hero-section h1 {
    color: #ffffff !important;
  }
}
