.news-page {
  padding: 60px 20px;
  background-color: var(--bg-dark-blue);
  min-height: 70vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  color: var(--neon-cyan);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px var(--neon-glow);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background: var(--bg-accent-blue);
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.news-card:hover {
  transform: translatey(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.15);
}

.news-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image {
  transform: scale(1.1);
}

.news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  color: var(--neon-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-title {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: var(--neon-cyan);
}

.news-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .news-page {
    padding: 40px 10px;
  }

  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .news-image-wrapper {
    height: 200px;
  }

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

@media (max-width: 480px) {
  .container {
    width: 85%;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
