/* ============================================
   NEWS & MEDIA PAGE STYLES
   Consistent with sustainability.html design
   ============================================ */

/* ===== HERO SECTION ===== */
.news-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 50% 0%);
  
}  
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
   
    box-sizing: border-box;
}

.hero-static {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-static::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  color: white;
}

.hero-text {
  max-width: 800px;
  margin-top: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
 color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #00a8ff;
}

.breadcrumb .current {
  color: #00a8ff;
  font-weight: 600;
}

.breadcrumb i {
  font-size: 0.8rem;
  margin: 0 5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color:black;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color:black;
  font-weight: 500;
  max-width: 700px;
}

.hero-stats-news {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  min-width: 150px;
  transition: transform 0.3s, background 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  color: #00a8ff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color:black;
  font-weight: 400;
}

/* ===== MAIN CONTENT SECTIONS ===== */
.news-content {
  padding-top: 0;
}

.section {
  padding: 80px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00a8ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3b5d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== NEWS FILTER SECTION ===== */
.news-filter {
  background: #f8f9fa;
  padding: 40px 0;
  position: sticky;
  top: 80px;
  z-index: 90;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  border: 2px solid #e0e6ef;
  border-radius: 10px;
  color: #495057;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #1a3b5d;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.filter-btn:hover {
  color: white;
  border-color: #1a3b5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 59, 93, 0.15);
}

.filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.filter-btn:hover i,
.filter-btn:hover span {
  position: relative;
  z-index: 1;
}

.filter-btn.active {
  background: #1a3b5d;
  border-color: #1a3b5d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 59, 93, 0.2);
}

.filter-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.filter-btn.active i {
  color: white;
  transform: scale(1.1);
}

/* ===== FEATURED NEWS SECTION ===== */
.featured-news {
  background: #fff;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e6ef;
  transition: all 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 168, 255, 0.15);
}

.featured-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.badge {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge.spotlight {
  background: rgba(0, 168, 255, 0.9);
  color: white;
}

.badge.date {
  background: rgba(255, 255, 255, 0.9);
  color: #1a3b5d;
}

.featured-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: 2.2rem;
  color: #1a3b5d;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.featured-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.95rem;
}

.meta-item i {
  color: #00a8ff;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #0097e6, #0082cc);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 168, 255, 0.3);
}

.read-more-btn i {
  transition: transform 0.3s;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* ===== LATEST NEWS GRID SECTION ===== */
.latest-news {
  background: #f8f9fa;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px 30px;
  margin-bottom: 60px;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e9ecef;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 168, 255, 0.15);
  border-color: #00a8ff;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00a8ff, #0097e6);
  opacity: 0;
  transition: opacity 0.3s;
}

.news-card:hover::before {
  opacity: 1;
}

.news-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.news-category.spotlight {
  background: rgba(255, 159, 67, 0.9);
}

.news-category.sustainability {
  background: rgba(76, 209, 55, 0.9);
}

.news-category.operations {
  background: rgba(52, 152, 219, 0.9);
}

.news-category.innovation {
  background: rgba(155, 136, 255, 0.9);
}

.news-category.community {
  background: rgba(255, 107, 129, 0.9);
}

.news-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.news-date i {
  color: #00a8ff;
}

.news-content h3 {
  font-size: 1.4rem;
  color: #1a3b5d;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
  flex-grow: 1;
}

.news-card:hover .news-content h3 {
  color: #00a8ff;
}

.news-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f4f8;
  flex-wrap: wrap;
  gap: 10px;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.85rem;
}

.news-meta i {
  color: #00a8ff;
  font-size: 0.9rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00a8ff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(0, 168, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s;
  border: 1px solid rgba(0, 168, 255, 0.2);
  width: fit-content;
  margin-top: auto;
}

.news-link:hover {
  background: #00a8ff;
  color: white;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.news-link i {
  transition: transform 0.3s;
}

.news-link:hover i {
  transform: translateX(3px);
}

/* ===== PAGINATION ===== */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: white;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #e0e6ef;
}

.page-btn:hover {
  background: #f8f9fa;
  color: #1a3b5d;
  transform: translateY(-2px);
  border-color: #1a3b5d;
}

.page-btn.active {
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.page-btn.next {
  width: auto;
  padding: 0 24px;
  gap: 8px;
}

.page-dots {
  color: #666;
  padding: 0 10px;
}

/* ===== MEDIA KIT SECTION ===== */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: white;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 59, 93, 0.9) 0%, rgba(10, 35, 64, 0.8) 100%);
}

.media-kit .container {
  position: relative;
  z-index: 2;
}

.media-kit .section-header .section-title {
  color: white;
}

.media-kit .section-header .section-subtitle {
  color: #00a8ff;
}

.media-kit .section-header .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.media-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.media-contacts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 255, 0.2);
  color: #00a8ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.media-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-form h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-form h3 i {
  color: #00a8ff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.95rem;
  color: white;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00a8ff;
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0097e6, #0082cc);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 168, 255, 0.3);
}

.submit-btn i {
  transition: transform 0.3s;
}

.submit-btn:hover i {
  transform: translateX(3px);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  background: linear-gradient(135deg, #1a3b5d 0%, #0a3250 100%);
  color: white;
}

.newsletter-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: #00a8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  border: 2px solid rgba(0, 168, 255, 0.3);
}

.newsletter-text h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.05rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #00a8ff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
}

.subscribe-btn {
  padding: 16px 30px;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, #0097e6, #0082cc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3);
}

.subscribe-btn i {
  transition: transform 0.3s;
}

.subscribe-btn:hover i {
  transform: translateX(3px);
}

.privacy-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 15px;
  text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ENHANCED FILTERING ===== */
.news-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.news-card.filtered-out {
  opacity: 0.3;
  transform: scale(0.95);
  pointer-events: none;
  filter: grayscale(0.7);
}

/* Add staggered animation delays */
.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; }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and small desktops */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats-news {
    gap: 20px;
  }
  
  .stat-box {
    min-width: 130px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .featured-article {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .featured-image {
    height: 300px;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .media-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .newsletter-icon {
    margin: 0 auto;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px 0;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-btn {
    flex-shrink: 0;
    padding: 12px 20px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats-news {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-box {
    width: 100%;
    max-width: 250px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .featured-content {
    padding: 30px 20px;
  }
  
  .featured-content h2 {
    font-size: 1.8rem;
  }
  
  .featured-excerpt {
    font-size: 1rem;
  }
  
  .featured-meta {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
  
  .subscribe-btn {
    width: 100%;
    justify-content: center;
  }
  
  .news-pagination {
    flex-wrap: wrap;
  }
}

/* Small mobile phones */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .filter-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .news-card {
    margin: 0 10px;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .media-kit {
    background-attachment: scroll;
  }
}

/* Print styles */
@media print {
  .news-filter,
  .news-link,
  .news-pagination,
  .media-form,
  .newsletter-form,
  .social-links,
  .footer-bottom .footer-links {
    display: none !important;
  }
  
  .hero-static {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
  
  .hero-static::before {
    display: none;
  }
  
  .hero-title,
  .hero-subtitle,
  .section-title,
  .section-subtitle,
  .featured-content h2,
  .news-content h3 {
    color: black !important;
  }
  
  .stat-box,
  .featured-article,
  .news-card {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .featured-excerpt,
  .news-excerpt,
  .news-meta span {
    color: #333 !important;
  }
  
  a {
    color: black !important;
    text-decoration: underline;
  }
  
  .footer {
    border-top: 1px solid #ddd;
  }
}