body {
  background-color: #0a0a1a;
  color: white;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Latest News Section */
.latest-news-section {
  padding: 3rem 0;
  background-color: #0a0a1a;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #4dc4ff;
}

.news-feature-card {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  height: 520px;
  margin: 0 auto;
  max-width: 1400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-card-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.news-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 6rem 3rem 3rem;
}

.news-tag {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  margin-right: 1rem;
}

.news-date {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.news-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
  line-height: 1.2;
  max-width: 900px;
}

.news-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .news-feature-card {
    height: 450px;
  }
  .news-title {
    font-size: 2.5rem;
  }
  .news-card-overlay {
    padding: 4rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .news-feature-card {
    height: 400px;
  }
  .news-title {
    font-size: 2rem;
  }
  .news-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .news-feature-card {
    height: 450px;
  }
  .news-title {
    font-size: 1.75rem;
  }
  .news-card-overlay {
    padding: 3rem 1.5rem 1.5rem;
  }
}

/* Latest Articles Section - New Styles */
.latest-articles-section {
  padding: 4rem 0;
  background-color: #0a0a1a;
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.section-header-line {
  width: 4px;
  height: 32px;
  background-color: #3b82f6;
  margin-right: 1rem;
  border-radius: 2px;
}

.section-header-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 450px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 1.5rem 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.85rem;
  margin-right: 1rem;
}

.tag-events {
  background-color: #3b82f6;
  color: white;
}

.tag-education {
  background-color: #10b981;
  color: white;
}

.tag-partnerships {
  background-color: #8b5cf6;
  color: white;
}

.article-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Background decorative elements */
.bg-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-card {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .article-card {
    height: 350px;
  }

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

.news-description {
  font-size: 0.6rem;
}

.section-header-title {
  font-size: 1.8rem;
}

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

.article-description {
  font-size: 0.5rem;
}
}