.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__hero-section {
  position: relative;
  background-color: #003366; /* Main brand color for hero */
  color: #ffffff; /* White text for dark background */
  padding: 80px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  background-image: url('[GALLERY:hero_news:1920x600:8xbet,news,dynamic_background]');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  transition: background-color 0.3s ease;
}

.page-news__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.7); /* Dark overlay for text readability */
  z-index: 1;
}

.page-news__hero-section .page-news__container {
  position: relative;
  z-index: 2;
}

.page-news__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for H1 */
  line-height: 1.2;
}

.page-news__description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  cursor: pointer;
}

.page-news__btn-primary {
  background: #FFD700; /* Gold for primary CTA */
  color: #003366; /* Dark blue text on gold */
}

.page-news__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-news__btn-secondary {
  background: #003366; /* Dark blue for secondary CTA */
  color: #ffffff; /* White text on dark blue */
  border-color: #FFD700;
}

.page-news__btn-secondary:hover {
  background: #002244;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}