.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 8rem;
  margin: 0 0 4rem;
}

.news-content {
  width: 100%;
}

.news-content h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #1a1a1a;
  font-weight: 700;
  margin: 2.5rem 0 4rem;
  letter-spacing: 0.5px;
}

.news-item {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.news-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.news-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 0 0 20px 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: -2px;
}

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

.news-card h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.news-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .news-section {
    padding: 2rem 1rem;
  }

  .news-content h1 {
    font-size: 2rem;
    margin: 2rem 0 3rem;
  }

  .news-image {
    height: 300px;
  }

  .news-card {
    padding: 2rem;
  }

  .news-card h2 {
    font-size: 1.8rem;
  }

  .news-card p {
    font-size: 1rem;
  }
}
