/* ===========================================
   MODERN NEWS PAGES - COMPLETE REDESIGN
   Mobile-First Responsive Design
   =========================================== */

/* ===========================================
   GLOBAL NEWS PAGE STYLES
   =========================================== */

body.news-page {
  font-family: var(--font-primary) !important;
  line-height: 1.6 !important;
  color: var(--secondary-700) !important;
  background: var(--white) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force override any existing styles */
.news-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===========================================
   NEWS HERO SECTION - REDESIGNED
   =========================================== */

.news-hero {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--secondary-700) 100%) !important;
  color: var(--white) !important;
  padding: 6rem 0 4rem 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  width: 100% !important;
}

.news-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.news-hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.news-hero h1 {
  font-size: 4rem !important;
  font-weight: bold !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.1 !important;
  text-shadow: 0 4px 8px rgba(0, 174, 202, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  color: var(--primary-500) !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  filter: none !important;
  backdrop-filter: none !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--primary-500) !important;
  background-clip: initial !important;
  font-family: 'Janna LT Bold', 'Janna LT', Arial, sans-serif !important;
  letter-spacing: -0.02em !important;
  font-display: swap !important;
}

.news-hero-subtitle {
  font-size: 1.25rem !important;
  opacity: 1 !important;
  margin: 0 !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--white) !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  filter: none !important;
  backdrop-filter: none !important;
}

/* ===========================================
   FEATURED NEWS SECTION - REDESIGNED
   =========================================== */

.featured-news {
  padding: 5rem 0 !important;
  background: var(--gray-50) !important;
  margin: 0 !important;
  width: 100% !important;
}

.featured-news .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
}

.featured-news h2 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--secondary-700) !important;
  text-align: center !important;
  margin-bottom: 3rem !important;
  position: relative !important;
}

.featured-news h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 2px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.featured-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--gray-100);
  position: relative;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 174, 202, 0.3);
}

.featured-content {
  padding: 2.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.news-date {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-category {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-700);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-content p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.news-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.news-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-stats i {
  color: var(--primary-500);
  font-size: 1rem;
}

/* ===========================================
   ALL NEWS SECTION - REDESIGNED
   =========================================== */

.all-news {
  padding: 5rem 0;
  background: var(--white);
}

.all-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.news-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-700);
  margin: 0;
}

.news-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--gray-100);
  color: var(--gray-600);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 174, 202, 0.3);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
  position: relative;
  pointer-events: auto !important;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 5 !important;
}

.news-content .news-meta {
  margin-bottom: 1rem;
}

.news-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-700);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--primary-500) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 10 !important;
  position: relative !important;
}

.read-more:hover {
  color: var(--primary-700) !important;
  transform: translateX(4px) !important;
  text-decoration: none !important;
}

.read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(2px);
}

/* ===========================================
   PAGINATION - REDESIGNED
   =========================================== */

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pagination-btn {
  background: var(--gray-100);
  color: var(--gray-600);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary-500);
  color: var(--white);
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
  background: var(--primary-500);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================================
   NEWSLETTER SECTION - REDESIGNED
   =========================================== */

.newsletter-signup {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.newsletter-wrapper {
  text-align: center;
}

.newsletter-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.email-input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: var(--secondary-700);
}

.email-input::placeholder {
  color: var(--gray-500);
}

.subscribe-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 174, 202, 0.4);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  z-index: -1;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-message.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.form-message.success::before {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
}

.form-message.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.form-message.error::before {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
}

/* ===========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =========================================== */

/* Mobile Optimizations */
@media (max-width: 768px) {
  .news-hero {
    padding: 4rem 0 3rem 0;
    min-height: 50vh;
  }
  
  .news-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .news-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .news-hero-content {
    padding: 0 1rem;
  }
  
  .featured-news,
  .all-news {
    padding: 3rem 0;
  }
  
  .featured-news .container,
  .all-news .container {
    padding: 0 1rem;
  }
  
  .featured-news h2,
  .news-header h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .featured-grid {
    gap: 2rem;
  }
  
  .featured-card {
    border-radius: 16px;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .featured-content {
    padding: 2rem;
  }
  
  .featured-content h3 {
    font-size: 1.5rem;
  }
  
  .news-stats {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .news-filters {
    width: 100%;
    justify-content: center;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .news-card {
    border-radius: 12px;
  }
  
  .news-content {
    padding: 1.25rem;
  }
  
  .newsletter-signup {
    padding: 3rem 0;
  }
  
  .newsletter-container {
    padding: 0 1rem;
  }
  
  .newsletter-header h2 {
    font-size: 2rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    border-radius: 16px;
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .email-input {
    border-radius: 12px;
    padding: 0.875rem 1rem;
  }
  
  .subscribe-btn {
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    justify-content: center;
  }
}

/* Small Mobile Optimizations */
@media (max-width: 480px) {
  .news-hero {
    padding: 3rem 0 2rem 0;
    min-height: 40vh;
  }
  
  .news-hero h1 {
    font-size: 1.875rem;
  }
  
  .news-hero-subtitle {
    font-size: 1rem;
  }
  
  .featured-news,
  .all-news {
    padding: 2rem 0;
  }
  
  .featured-news h2,
  .news-header h2 {
    font-size: 1.75rem;
  }
  
  .featured-content {
    padding: 1.5rem;
  }
  
  .featured-content h3 {
    font-size: 1.25rem;
  }
  
  .featured-content p {
    font-size: 1rem;
  }
  
  .news-stats {
    gap: 1rem;
  }
  
  .news-stats span {
    font-size: 0.85rem;
  }
  
  .filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .news-content h3 {
    font-size: 1.125rem;
  }
  
  .news-content p {
    font-size: 0.9rem;
  }
  
  .newsletter-header h2 {
    font-size: 1.75rem;
  }
  
  .newsletter-header p {
    font-size: 1rem;
  }
  
  .pagination-btn {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }
  
  .pagination-number {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
}

/* ===========================================
   NAVIGATION FIXES FOR NEWS PAGES - REMOVED CONFLICTING STYLES
   =========================================== */

/* ===========================================
   ANIMATIONS AND INTERACTIONS
   =========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card,
.featured-card {
  animation: fadeInUp 0.6s ease-out;
}

.news-card:nth-child(2) {
  animation-delay: 0.1s;
}

.news-card:nth-child(3) {
  animation-delay: 0.2s;
}

.news-card:nth-child(4) {
  animation-delay: 0.3s;
}

.news-card:nth-child(5) {
  animation-delay: 0.4s;
}

.news-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* ===========================================
   ACCESSIBILITY IMPROVEMENTS
   =========================================== */

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .featured-card,
  .news-card:hover,
  .featured-card:hover {
    transform: none;
    transition: none;
  }
  
  .news-image img,
  .featured-image img {
    transform: none;
  }
}

/* Focus styles for better accessibility */
.filter-btn:focus,
.pagination-btn:focus,
.pagination-number:focus,
.subscribe-btn:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .news-card,
  .featured-card {
    border: 2px solid var(--secondary-300);
  }
  
  .filter-btn.active {
    background: var(--secondary-700);
    color: var(--white);
  }
}

/* ===========================================
   FORCE OVERRIDE - CACHE BUSTING
   =========================================== */

/* Force all news page elements to use new styles */
body.news-page * {
  box-sizing: border-box !important;
}

/* Force styles when redesign is loaded */
body.news-page.news-redesign-loaded .news-hero {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--secondary-700) 100%) !important;
  color: var(--white) !important;
  padding: 6rem 0 4rem 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  width: 100% !important;
  filter: none !important;
  backdrop-filter: none !important;
}

body.news-page.news-redesign-loaded .news-hero h1,
body.news-page.news-redesign-loaded .news-hero-subtitle {
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  opacity: 1 !important;
}

.news-hero {
  background: var(--gradient-hero) !important;
  color: var(--white) !important;
  padding: 6rem 0 4rem 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  width: 100% !important;
}

.news-hero h1 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  color: white !important;
}

.news-hero-subtitle {
  font-size: 1.25rem !important;
  opacity: 0.95 !important;
  margin: 0 !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: white !important;
}

.featured-news {
  padding: 5rem 0 !important;
  background: #f8fafc !important;
  margin: 0 !important;
  width: 100% !important;
}

.featured-news h2 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  text-align: center !important;
  margin-bottom: 3rem !important;
  position: relative !important;
}

.featured-card {
  background: white !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  border: 1px solid #e2e8f0 !important;
  position: relative !important;
}

.news-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 2rem !important;
  margin-bottom: 3rem !important;
}

.news-card {
  background: white !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  border: 1px solid #e2e8f0 !important;
  position: relative !important;
}

/* ===========================================
   HERO TEXT CLARITY FIXES
   =========================================== */

/* Ensure hero text is never blurred */
.news-hero * {
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Force font loading for news hero h1 */
.news-hero h1 {
  font-family: 'Janna LT Bold', 'Janna LT', Arial, sans-serif !important;
  font-display: swap !important;
  font-weight: bold !important;
  font-size: 4rem !important;
}

/* Override any gradient text effects on h1 */
.news-hero h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--primary-500) !important;
  background-clip: initial !important;
  color: var(--primary-500) !important;
  font-weight: bold !important;
  font-family: 'Janna LT Bold', 'Janna LT', Arial, sans-serif !important;
  font-size: 4rem !important;
  text-shadow: 0 4px 8px rgba(0, 174, 202, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: -0.02em !important;
  font-display: swap !important;
}

.news-hero h1,
.news-hero-subtitle,
.news-hero-content,
.news-hero-content * {
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  opacity: 1 !important;
  transform: none !important;
}
  font-size: 4rem !important;
}

/* Override any gradient text effects on h1 */
.news-hero h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--primary-500) !important;
  background-clip: initial !important;
  color: var(--primary-500) !important;
  font-weight: bold !important;
  font-family: 'Janna LT Bold', 'Janna LT', Arial, sans-serif !important;
  font-size: 4rem !important;
  text-shadow: 0 4px 8px rgba(0, 174, 202, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: -0.02em !important;
  font-display: swap !important;
}

.news-hero h1,
.news-hero-subtitle,
.news-hero-content,
.news-hero-content * {
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  opacity: 1 !important;
  transform: none !important;
}
  font-size: 4rem !important;
}

/* Override any gradient text effects on h1 */
.news-hero h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--primary-500) !important;
  background-clip: initial !important;
  color: var(--primary-500) !important;
  font-weight: bold !important;
  font-family: 'Janna LT Bold', 'Janna LT', Arial, sans-serif !important;
  font-size: 4rem !important;
  text-shadow: 0 4px 8px rgba(0, 174, 202, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: -0.02em !important;
  font-display: swap !important;
}

.news-hero h1,
.news-hero-subtitle,
.news-hero-content,
.news-hero-content * {
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  opacity: 1 !important;
  transform: none !important;
}
  font-size: 4rem !important;
}

/* Override any gradient text effects on h1 */
.news-hero h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--primary-500) !important;
  background-clip: initial !important;
  color: var(--primary-500) !important;
  font-weight: bold !important;
  font-family: 'Janna LT Bold', 'Janna LT', Arial, sans-serif !important;
  font-size: 4rem !important;
  text-shadow: 0 4px 8px rgba(0, 174, 202, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: -0.02em !important;
  font-display: swap !important;
}

.news-hero h1,
.news-hero-subtitle,
.news-hero-content,
.news-hero-content * {
  filter: none !important;
  backdrop-filter: none !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  opacity: 1 !important;
  transform: none !important;