/* News Section */
.news-section {
  padding: 80px 0;
  background: var(--off-white);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin: 60px 0;
  background: var(--plainclr);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .featured-article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-content {
  padding: 40px;
}

.category {
  color: var(--dark-primaryclr);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured-content h3 {
  font-size: 2rem;
  margin: 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--dark-primaryclr);
  font-weight: 600;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--plainclr);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-8px);
}

.article-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.article-content a {
  color: var(--dark-primaryclr);
  font-weight: 600;
}/*# sourceMappingURL=news.css.map */