.page-news__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFCC00; /* Gold for emphasis */
}

.page-news__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-news__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-news__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-news__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

.page-news__btn--secondary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-news__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FFCC00;
  color: #003366;
}

.page-news__btn--large:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-news__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-news__latest-articles, .page-news__industry-insights, .page-news__bl555-updates, .page-news__promotions-cta, .page-news__responsible-gambling {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-news__latest-articles {
  background-color: #ffffff;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news__article-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-news__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-title {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__article-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFCC00;
}

.page-news__article-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  color: #FFCC00;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #e6b800;
}

.page-news__arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-news__read-more:hover .page-news__arrow {
  transform: translateX(5px);
}

.page-news__articles-list {
  display: grid;
  gap: 30px;
}

.page-news__list-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-news__list-title {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-news__list-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__list-title a:hover {
  color: #FFCC00;
}

.page-news__list-date {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 15px;
}

.page-news__list-excerpt {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-news__updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-news__update-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__update-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-news__update-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
}

.page-news__update-title {
  font-size: 1.7em;
  color: #003366;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-news__update-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__update-title a:hover {
  color: #FFCC00;
}

.page-news__update-date {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 15px;
}

.page-news__update-text {
  font-size: 1em;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 20px;
}

.page-news__promotions-cta {
  background: linear-gradient(135deg, #FFCC00, #e6b800);
  padding: 80px 0;
  text-align: center;
  color: #003366;
}

.page-news__promotions-cta .page-news__section-title {
  color: #003366;
  margin-bottom: 30px;
}

.page-news__promotions-cta .page-news__section-title::after {
  background-color: #003366;
}

.page-news__cta-text {
  font-size: 1.3em;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #002244;
}

.page-news__responsible-gambling {
  background-color: #f0f4f7;
  padding: 80px 0;
}

.page-news__responsible-gambling .page-news__section-title {
  color: #003366;
}

.page-news__responsible-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-news__responsible-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.page-news__responsible-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #003366;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news__responsible-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-news__responsible-list li a {
  color: #003366;
  text-decoration: none;
  display: block;
}

.page-news__responsible-list li a:hover {
  color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__hero-subtitle {
    font-size: 1.3em;
  }
  .page-news__section-title {
    font-size: 2.2em;
  }
  .page-news__articles-grid, .page-news__updates-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-image, .page-news__update-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 80px 0;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-news__latest-articles, .page-news__industry-insights, .page-news__bl555-updates, .page-news__promotions-cta, .page-news__responsible-gambling {
    padding: 60px 0;
  }
  .page-news__article-title {
    font-size: 1.4em;
  }
  .page-news__list-title {
    font-size: 1.5em;
  }
  .page-news__update-title {
    font-size: 1.4em;
  }
  .page-news__cta-text {
    font-size: 1.1em;
  }
  .page-news__responsible-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news__hero-section {
    padding: 60px 0;
  }
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-subtitle {
    font-size: 1em;
  }
  .page-news__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news__section-title {
    font-size: 1.6em;
  }
  .page-news__article-content, .page-news__list-item, .page-news__update-item {
    padding: 20px;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__list-title {
    font-size: 1.3em;
  }
  .page-news__update-title {
    font-size: 1.2em;
  }
  .page-news__cta-text {
    font-size: 1em;
  }
}