.news-page {
  padding-top: 80px;
  min-height: 100vh;
  background-color: #050505;
  color: #d4d4d4;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.news-header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), #050505),
              url('https://images.unsplash.com/photo-1506318137071-a8bcbf6755dd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #1a1a1a;
}

.news-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  font-family: 'Cormorant Garamond', serif;
}

.news-header p {
  font-size: 1.2rem;
  color: #a0a0a0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.news-card {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-image {
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: sepia(10%);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
  filter: sepia(0%);
}

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.4;
}

.news-content p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-read-news {
  background: transparent;
  border: 1px solid #333;
  color: #a0a0a0;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-read-news:hover {
  border-color: #d4af37;
  color: #d4af37;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-header h1 {
    font-size: 2.5rem;
  }
}