/* ==========================================================================
   NEWS PAGE CUSTOM STYLES
   ========================================================================== */

/* News Hero Section */
.news-hero {
  position: relative;
  background-image: url('../images/news-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 1;
}

.news-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.news-hero .container {
  position: relative;
  z-index: 2;
}

.news-hero-content {
  max-width: 600px;
  text-align: left;
}

.news-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

/* Pagination Section */
.news-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #0A0B0D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-arrow:hover {
  background-color: #FF154B;
  border-color: #FF154B;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 21, 75, 0.3);
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-number:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.pagination-number.active {
  background-color: #FF154B;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 21, 75, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .news-hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .news-hero {
    height: 320px;
  }

  .news-hero-title {
    font-size: 2.5rem;
  }

  .news-pagination {
    margin-top: 40px;
    padding-top: 20px;
  }
}