:root {
  --primary-color: #890c25;
  --primary-dark: #6e091d;
  --text-color: #000000;
  --text-muted: #6c757d;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --card-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
  --sidebar-bg: #fff;
  --accent-gold: #e8bc00;
}

body {
  font-family: "Inter";
}

/* News Page Content */
.news-page-content {
  background-color: #ffffff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

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

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.news-content {
  padding: 24px;
  max-width: 908px;
}

.news-title {
  font-family: "Inter";
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  color: #393939;
  margin-bottom: 39px;
  transition: var(--transition);
}

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

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--primary-color);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-separator {
  color: var(--primary-color);
  opacity: 0.5;
}

.news-excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar Styling */
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* margin-left: 63px; */
}

.sidebar-item {
  gap: 20px;
  display: flex;
  align-items: center;
  padding-top: 19px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 40px;
  background-color: #fff;
  border: 1px solid #890C25;
  border-radius: 25px;
  text-decoration: none !important;
  color: #890C25;
  font-weight: 500;
  font-size: 20px;
  transition: var(--transition);
}

.sidebar-item:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.sidebar-item .icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-item .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.sidebar-item:hover .icon-wrapper img {
  filter: brightness(0) invert(1);
}

/* Pagination Styling */
.news-pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  margin: 0 5px;
  color: #333;
  border: 1px solid #dee2e6;
  font-weight: 500;
  transition: var(--transition);
}

.news-pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.news-pagination .page-link:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.news-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .sidebar-links {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .news-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  .news-title {
    font-size: 1.25rem;
    margin-top: 15px;
  }
}
