/* News and Articles Section Styles */
.news-section {
  background-color: #e5e5e5;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  color: #111;
}

.news-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: #111;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateX(10px);
}

.article-card:last-child {
  border-bottom: none;
}

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

.article-category {
  background-color: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
}

.article-read-time {
  font-size: 0.875rem;
  color: #666;
  display: flex;
  align-items: center;
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.article-card:hover .article-title {
  color: #FF5A00;
}

.article-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
  max-width: 80%;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.article-author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

.article-date {
  font-size: 0.875rem;
  color: #666;
}

/* Button Styles */
.view-all-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0f0f0f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 2rem;
  align-self: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #FF5A00;
  transform: translateY(-3px);
}

.view-all-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-title {
    font-size: 3rem;
  }
  
  .article-title {
    font-size: 1.5rem;
  }
  
  .article-content {
    max-width: 100%;
  }
}