.news {
  background-color: rgb(36, 33, 29);
}

.news-title {
  font-size: 48px;
  color: rgb(244, 128, 0);
  margin-bottom: 10px;
}

.news-tagline {
  font-size: 24px;
  color: #e6e6e6;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-item {
  background-color: #2a2927;
  border-radius: 8px;
  padding: 20px;
  transition: 0.25s ease;
}

.news-item:hover {
  transform: translateY(-4px);
}

.news-image-box {
  width: 100%;
  height: 180px;
  background-color: #222;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-category {
  font-size: 14px;
  color: rgb(244, 128, 0);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-headline {
  font-size: 22px;
  color: #ffffff;
  margin: 10px 0 12px;
}

.news-excerpt {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-link {
  color: #c9a86a;
  font-size: 16px;
  transition: 0.2s ease;
}

.news-link:hover {
  color: #e6c98a;
}

.news-access {
  margin-top: 60px;
}

.news-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.news-links-inline a {
  color: #c9a86a;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.news-links-inline a:hover {
  color: #e6c98a;
}
