/* style/news.css */
.page-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.page-news__hero {
  background: linear-gradient(135deg, #0A2342 0%, #E6B325 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-news__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* General Section Styling */
.page-news__section {
  padding: 60px 0;
}

.page-news__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-news__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-news__btn--primary {
  background-color: #E6B325;
  color: #0A2342;
  border: 2px solid #E6B325;
}

.page-news__btn--primary:hover {
  background-color: #d1a120;
  border-color: #d1a120;
  color: #0A2342;
}

.page-news__btn--secondary {
  background-color: #0A2342;
  color: #E6B325;
  border: 2px solid #0A2342;
  margin-left: 15px;
}

.page-news__btn--secondary:hover {
  background-color: #1a3a5e;
  border-color: #1a3a5e;
  color: #E6B325;
}

.page-news__btn--link {
  color: #E6B325;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.page-news__btn--link:hover {
  text-decoration: underline;
  color: #d1a120;
}

/* Introduction Section */
.page-news__introduction {
  background-color: #fff;
}

.page-news__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-news__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-news__image-wrapper {
  text-align: center;
}

.page-news__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Articles List */
.page-news__articles-list {
  background-color: #f0f2f5;
}

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

.page-news__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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.15);
}

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

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

.page-news__article-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #0A2342;
  font-weight: bold;
}

.page-news__article-title a {
  color: #0A2342;
  text-decoration: none;
}

.page-news__article-title a:hover {
  color: #E6B325;
  text-decoration: underline;
}

.page-news__article-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* CTA Banner */
.page-news__cta-banner {
  background: #0A2342;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-content {
  max-width: 900px;
}

.page-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E6B325;
  font-weight: bold;
}

.page-news__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-news__cta-buttons .page-news__btn {
  margin: 0 10px;
}

/* Responsible Gambling Section */
.page-news__responsible-gambling {
  background-color: #fff;
  text-align: center;
}

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

.page-news__responsible-gambling .page-news__section-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
  margin-bottom: 30px;
}

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

.page-news__responsibility-list li {
  background-color: #f0f2f5;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #E6B325;
  border-radius: 5px;
  color: #333;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }

  .page-news__hero-subtitle {
    font-size: 1.2em;
  }

  .page-news__section-title {
    font-size: 2em;
  }

  .page-news__grid-2-col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-news__text-content {
    order: 2;
  }

  .page-news__image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }

  .page-news__cta-title {
    font-size: 2.2em;
  }

  .page-news__cta-description {
    font-size: 1.1em;
  }

  .page-news__cta-buttons .page-news__btn {
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-news__hero {
    padding: 80px 0;
    min-height: 350px;
  }

  .page-news__hero-title {
    font-size: 2.2em;
  }

  .page-news__hero-subtitle {
    font-size: 1em;
  }

  .page-news__section {
    padding: 40px 0;
  }

  .page-news__section-title {
    font-size: 1.8em;
  }

  .page-news__section-description {
    font-size: 1em;
  }

  .page-news__grid-3-col {
    grid-template-columns: 1fr;
  }

  .page-news__article-img {
    height: 180px;
  }

  .page-news__article-title {
    font-size: 1.3em;
  }

  .page-news__cta-banner {
    padding: 60px 0;
  }

  .page-news__cta-title {
    font-size: 1.8em;
  }

  .page-news__cta-description {
    font-size: 1em;
  }

  .page-news__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-news__hero {
    padding: 60px 0;
    min-height: 300px;
  }

  .page-news__hero-title {
    font-size: 1.8em;
  }

  .page-news__hero-subtitle {
    font-size: 0.9em;
  }

  .page-news__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-news__section-title {
    font-size: 1.5em;
  }

  .page-news__article-title {
    font-size: 1.2em;
  }

  .page-news__cta-title {
    font-size: 1.6em;
  }
}