/* News Page Specific Styles */

/* Banner Section */
.news-banner-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop&crop=center&auto=format&q=80"),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  background-size: cover, 100% 100%, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.news-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(30, 41, 59, 0.7) 50%,
    rgba(51, 65, 85, 0.85) 100%
  );
  z-index: 1;
}

.news-banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='25' cy='25' r='1' fill='white' opacity='0.1'/%3E%3Ccircle cx='75' cy='75' r='1' fill='white' opacity='0.1'/%3E%3Ccircle cx='50' cy='10' r='0.5' fill='white' opacity='0.1'/%3E%3Ccircle cx='10' cy='60' r='0.5' fill='white' opacity='0.1'/%3E%3Ccircle cx='90' cy='40' r='0.5' fill='white' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grain)'/%3E%3C/svg%3E");
  z-index: 1;
  opacity: 0.3;
}

.news-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.news-banner-section .container {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.news-banner-content {
  position: relative;
  z-index: 4;
  margin-top: 60px;
}

.news-page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.news-page-header-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
}

.news-page-header-badge i {
  font-size: 16px;
  color: #3b82f6;
}

.news-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  line-height: 1.2;
}

.news-banner-title .highlight {
  color: #3b82f6;
  text-shadow: 2px 2px 8px rgba(59, 130, 246, 0.3);
}

.news-banner-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  line-height: 1.6;
  font-weight: 400;
}

.news-banner-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.news-banner-buttons .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.news-banner-buttons .btn-primary {
  background: #3b82f6;
  color: white;
  border: 2px solid #3b82f6;
}

.news-banner-buttons .btn-primary:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.news-banner-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-banner-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.news-banner-buttons .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;
}

.news-banner-buttons .btn:hover::before {
  left: 100%;
}

.news-banner-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.news-banner-buttons .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* News Filter */
.news-filter-section {
  padding: 40px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid #e9ecef;
}

.news-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-filter-tab {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-filter-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.news-filter-tab:hover::before,
.news-filter-tab.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.news-filter-tab:hover,
.news-filter-tab.active {
  color: white;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Featured News */
.news-featured-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.news-featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

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

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

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

.news-featured-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-featured-content {
  padding: 40px;
}

.news-featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6b7280;
}

.news-featured-date,
.news-featured-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-featured-date i,
.news-featured-author i {
  color: #3b82f6;
}

.news-featured-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #1f2937;
  transition: color 0.3s ease;
}

.news-featured-article:hover .news-featured-title {
  color: #3b82f6;
}

.news-featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 30px;
}

.news-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-featured-link::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 ease;
}

.news-featured-link:hover::before {
  left: 100%;
}

.news-featured-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.news-featured-link i {
  transition: transform 0.3s ease;
}

.news-featured-link:hover i {
  transform: translateX(4px);
}

/* News Grid */
.news-grid-section {
  background-color: #f8fafc;
}

.news-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.news-article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.news-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-article-card:hover::before {
  opacity: 0.05;
}

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

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

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

.news-article-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-article-card:hover .news-article-image::after {
  opacity: 1;
}

.news-article-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.news-article-card:hover .news-article-category {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  transform: scale(1.05);
}

.news-article-content {
  padding: 25px;
}

.news-article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #6b7280;
}

.news-article-date,
.news-article-author {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-article-date i,
.news-article-author i {
  color: #3b82f6;
  font-size: 12px;
}

.news-article-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #1f2937;
  transition: color 0.3s ease;
}

.news-article-card:hover .news-article-title {
  color: #3b82f6;
}

.news-article-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 20px;
}

.news-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.news-article-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  transition: width 0.3s ease;
}

.news-article-link:hover {
  color: #1e3a8a;
}

.news-article-link:hover::after {
  width: 100%;
}

.news-article-link i {
  transition: transform 0.3s ease;
}

.news-article-link:hover i {
  transform: translateX(4px);
}

/* Load More Button */
.news-load-more-section {
  text-align: center;
  padding: 40px 0;
}

.news-load-more-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  transform: translateY(-50%);
}

.news-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-load-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.news-load-more-btn:hover::before {
  left: 100%;
}

.news-load-more-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.news-load-more-btn:active {
  transform: translateY(0);
}

.news-load-more-btn .btn-text {
  transition: opacity 0.3s ease;
}

.news-load-more-btn .btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.news-load-more-btn.loading .btn-text {
  display: none;
}

.news-load-more-btn.loading .btn-loading {
  display: flex;
}

.news-load-more-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

@keyframes loadMorePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.news-load-more-btn.loading {
  animation: loadMorePulse 2s infinite;
}

/* Newsletter Section */
.news-newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.news-newsletter-section::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="newsletter-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
  opacity: 0.3;
}

.news-newsletter-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.news-newsletter-section .container {
  position: relative;
  z-index: 2;
}

.news-newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.news-newsletter-text {
  max-width: 550px;
}

.news-newsletter-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.news-newsletter-description {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 32px;
  font-weight: 400;
}

.news-newsletter-form {
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.news-newsletter-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(59, 130, 246, 0.1),
    rgba(30, 58, 138, 0.1)
  );
  z-index: -1;
}

.news-subscription-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-subscription-form .form-group {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

.news-subscription-form input {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.news-subscription-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.news-subscription-form input:focus {
  outline: none;
  border-color: #fbbf24;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}

.news-subscription-form .btn {
  padding: 18px 32px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #1e3a8a;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 140px;
}

.news-subscription-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.news-subscription-form .btn:hover::before {
  left: 100%;
}

.news-subscription-form .btn:hover {
  background: linear-gradient(45deg, #f59e0b, #d97706);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.news-subscription-form .btn:active {
  transform: translateY(-1px);
}

.news-form-note {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-subscription-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(
    45deg,
    rgba(34, 197, 94, 0.2),
    rgba(22, 163, 74, 0.2)
  );
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 15px;
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(10px);
  animation: slideIn 0.5s ease-out;
}

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

.news-subscription-success i {
  font-size: 20px;
  color: #16a34a;
}

/* Industry Insights */
.news-industry-insights-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.news-insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.news-insight-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-insight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.news-insight-card:hover::before {
  transform: scaleX(1);
}

.news-insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-insight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.news-insight-card:hover .news-insight-icon {
  transform: scale(1.1) rotate(5deg);
}

.news-insight-icon i {
  font-size: 24px;
  color: white;
}

.news-insight-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.news-insight-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-featured-article {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .news-newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .news-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-banner-section {
    min-height: 500px;
  }

  .news-banner-title {
    font-size: 2.5rem;
  }

  .news-banner-subtitle {
    font-size: 1.1rem;
  }

  .news-banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .news-banner-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .news-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .news-featured-content {
    padding: 30px;
  }

  .news-featured-title {
    font-size: 1.5rem;
  }

  .news-articles-grid {
    grid-template-columns: 1fr;
  }

  .news-article-content {
    padding: 20px;
  }

  .news-article-title {
    font-size: 1.1rem;
  }

  .news-newsletter-title {
    font-size: 2.5rem;
  }

  .news-newsletter-form {
    padding: 30px;
  }

  .news-subscription-form .form-group {
    flex-direction: column;
    gap: 16px;
  }

  .news-subscription-form .btn {
    width: 100%;
  }

  .news-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .news-banner-section {
    min-height: 400px;
  }

  .news-banner-title {
    font-size: 2rem;
  }

  .news-banner-subtitle {
    font-size: 1rem;
  }

  .news-featured-image {
    height: 250px;
  }

  .news-featured-content {
    padding: 20px;
  }

  .news-featured-title {
    font-size: 1.25rem;
  }

  .news-article-image {
    height: 200px;
  }

  .news-article-content {
    padding: 15px;
  }

  .news-article-title {
    font-size: 1rem;
  }

  .news-newsletter-title {
    font-size: 2rem;
  }

  .news-newsletter-description {
    font-size: 1.1rem;
  }

  .news-newsletter-form {
    padding: 25px;
  }

  .news-subscription-form input {
    padding: 16px 20px;
  }

  .news-subscription-form .btn {
    padding: 16px 24px;
  }

  .news-insight-card {
    padding: 20px;
  }

  .news-insight-icon {
    width: 50px;
    height: 50px;
  }

  .news-insight-icon i {
    font-size: 20px;
  }

  .news-insights-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .news-grid-section {
    background: #1f2937;
  }

  .news-article-card {
    background: #374151;
    color: #f9fafb;
  }

  .news-article-title {
    color: #f9fafb;
  }

  .news-article-excerpt {
    color: #d1d5db;
  }

  .news-insight-card {
    background: #374151;
    color: #f9fafb;
  }

  .news-insight-content h3 {
    color: #f9fafb;
  }

  .news-insight-content p {
    color: #d1d5db;
  }
}

/* High contrast support */
@media (prefers-contrast: high) {
  .news-article-card {
    border: 2px solid #000;
  }

  .news-article-category {
    border: 1px solid #fff;
  }

  .news-load-more-btn {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .news-article-card,
  .news-featured-article,
  .news-insight-card {
    transition: none;
  }

  .news-article-card:hover,
  .news-featured-article:hover,
  .news-insight-card:hover {
    transform: none;
  }

  .news-article-card:hover .news-article-image img,
  .news-featured-article:hover .news-featured-image img {
    transform: none;
  }

  .news-article-link:hover i,
  .news-featured-link:hover i {
    transform: none;
  }

  .news-load-more-btn:hover {
    transform: none;
  }
}
