.section-news {
  padding: 100px 0;
  background: #e0efef;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-heading {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 100%;
  text-align: center;
  color: #011e2c;
  margin-bottom: 2.4rem;
}

.news-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  color: #011e2c;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.news-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.news-tab {
  font-family: "Open Sans", sans-serif;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(42, 201, 241, 0.25);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #3a5a6a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-tab:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(42, 201, 241, 0.5);
  color: #2ac9f1;
}

.news-tab.active {
  background: linear-gradient(135deg, rgba(42, 201, 241, 0.9) 0%, rgba(70, 210, 245, 0.85) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(42, 201, 241, 0.3);
}

.news-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.news-feed {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 4px 25px rgba(42, 201, 241, 0.12);
  overflow: hidden;
  border: 1px solid rgba(42, 201, 241, 0.15);
}

.news-feed-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(42, 180, 220, 0.92) 0%, rgba(42, 201, 241, 0.88) 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-feed-header svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.95);
}

.news-feed-header h3 {
  font-family: "Lexend", sans-serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.news-feed-content {
  max-height: 500px;
  overflow-y: auto;
}

.news-articles {
  display: flex;
  flex-direction: column;
}

.news-article {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(42, 201, 241, 0.12);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-article:hover {
  background: rgba(42, 201, 241, 0.05);
}

.news-article:last-child {
  border-bottom: none;
}

.news-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.news-article-source {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2ac9f1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-article-date {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #07101e;
  opacity: 0.45;
}

.news-article-title {
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a3a4a;
  margin: 0 0 8px;
  line-height: 1.45;
}

.news-article-excerpt {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #3a5a6a;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-article-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.news-tag {
  font-family: "Open Sans", sans-serif;
  padding: 5px 12px;
  background: rgba(42, 201, 241, 0.1);
  color: #2a9ab8;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(42, 201, 241, 0.15);
}

.news-load-more {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid rgba(42, 201, 241, 0.12);
}

.news-load-more-btn {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(42, 201, 241, 0.25);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #3a5a6a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.news-load-more-btn:hover {
  background: linear-gradient(135deg, rgba(42, 180, 220, 0.9) 0%, rgba(42, 201, 241, 0.85) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(42, 201, 241, 0.25);
}

.news-featured {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 4px 25px rgba(42, 201, 241, 0.12);
  overflow: hidden;
  border: 1px solid rgba(42, 201, 241, 0.15);
}

.news-featured-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(42, 180, 220, 0.92) 0%, rgba(42, 201, 241, 0.88) 100%);
}

.news-featured-header h3 {
  font-family: "Lexend", sans-serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.news-featured-content {
  padding: 24px;
}

.featured-article {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 201, 241, 0.12);
}

.featured-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.featured-article-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.featured-article-category {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(42, 180, 220, 0.9) 0%, rgba(42, 201, 241, 0.85) 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.featured-article-title {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a3a4a;
  margin: 0 0 8px;
  line-height: 1.35;
}

.featured-article-excerpt {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #3a5a6a;
  line-height: 1.6;
  margin: 0 0 12px;
}

.featured-article-link {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2ac9f1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.featured-article-link:hover {
  gap: 8px;
  color: #1ab8e0;
}

.news-cta {
  background: linear-gradient(135deg, rgba(42, 180, 220, 0.92) 0%, rgba(42, 201, 241, 0.88) 100%);
  padding: 28px;
  border-radius: 16px;
  margin-top: 24px;
  text-align: center;
}

.news-cta h4 {
  font-family: "Lexend", sans-serif;
  color: rgba(255, 255, 255, 0.98);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.news-cta p {
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0 0 20px;
}

.news-cta-btn {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.98);
  border: none;
  border-radius: 100px;
  color: #2a9ab8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.news-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #1a8aa8;
}

@media (max-width: 900px) {
  .news-content {
    grid-template-columns: 1fr;
  }
  
  .news-heading {
    font-size: 3rem;
  }
  
  .news-description {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .section-news {
    padding: 60px 0;
  }
  
  .news-heading {
    font-size: 2.4rem;
  }
  
  .news-description {
    font-size: 1.2rem;
  }
  
  .news-subscribe-form {
    flex-direction: column;
  }
  
  .news-tabs {
    gap: 8px;
  }
  
  .news-tab {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .news-header {
    margin-bottom: 2.5rem;
  }
}
