/* style/resources-responsible-gambling-guide.css */
.page-resources-responsible-gambling-guide {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8; /* Light text for dark background */
  background-color: #1A2C42; /* Main dark background */
  line-height: 1.6;
}

.page-resources-responsible-gambling-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-responsible-gambling-guide__hero-section {
  background: linear-gradient(135deg, #1A2C42 0%, #3a5c88 100%); /* Gradient from main to a lighter variant */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-responsible-gambling-guide__back-link {
  display: inline-block;
  color: #E0B147; /* Accent color for link */
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-responsible-gambling-guide__back-link:hover {
  color: #f7d28c; /* Lighter accent on hover */
}

.page-resources-responsible-gambling-guide__title {
  font-size: 3em;
  color: #E0B147; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-responsible-gambling-guide__subtitle {
  font-size: 1.2em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-responsible-gambling-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.page-resources-responsible-gambling-guide__content-article {
  padding: 40px 0;
  background-color: #1A2C42;
}

.page-resources-responsible-gambling-guide__article-body {
  max-width: 800px; /* Optimal width for readability */
  margin: 0 auto;
}

.page-resources-responsible-gambling-guide__heading {
  font-size: 2.2em;
  color: #E0B147; /* Accent color for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(224, 177, 71, 0.3);
  padding-bottom: 10px;
}

.page-resources-responsible-gambling-guide__sub-heading {
  font-size: 1.6em;
  color: #f8f8f8;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-responsible-gambling-guide p {
  margin-bottom: 1em;
  color: #c0c0c0;
  font-size: 1.05em;
}

.page-resources-responsible-gambling-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #c0c0c0;
}

.page-resources-responsible-gambling-guide__list li {
  margin-bottom: 0.5em;
}

.page-resources-responsible-gambling-guide__content-image {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-responsible-gambling-guide__quote {
  background-color: #2a3e5a; /* Slightly lighter dark shade */
  border-left: 5px solid #E0B147; /* Accent border */
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #f0f0f0;
  border-radius: 4px;
}

.page-resources-responsible-gambling-guide__quote p {
  margin: 0;
  color: #f0f0f0;
}

.page-resources-responsible-gambling-guide__link {
  color: #E0B147; /* Accent color for internal links */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-responsible-gambling-guide__link:hover {
  text-decoration: underline;
  color: #f7d28c;
}

.page-resources-responsible-gambling-guide__cta-wrapper {
  text-align: center;
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-responsible-gambling-guide__button {
  display: inline-block;
  background-color: #E0B147; /* Accent color for buttons */
  color: #1A2C42; /* Dark text for accent background */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-responsible-gambling-guide__button:hover {
  background-color: #f7d28c; /* Lighter accent on hover */
  transform: translateY(-2px);
}

.page-resources-responsible-gambling-guide__button--secondary {
  background-color: #3a5c88; /* A variant of the main color */
  color: #f8f8f8;
}

.page-resources-responsible-gambling-guide__button--secondary:hover {
  background-color: #5f6b7b;
}

.page-resources-responsible-gambling-guide__faq {
  margin-top: 40px;
}

.page-resources-responsible-gambling-guide__faq-item {
  background-color: #2a3e5a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-resources-responsible-gambling-guide__faq-question {
  color: #E0B147;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-responsible-gambling-guide__faq-answer {
  color: #d0d0d0;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-responsible-gambling-guide__title {
    font-size: 2.5em;
  }

  .page-resources-responsible-gambling-guide__heading {
    font-size: 1.8em;
  }

  .page-resources-responsible-gambling-guide__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-responsible-gambling-guide__button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-responsible-gambling-guide__hero-section {
    padding: 60px 0 30px;
  }

  .page-resources-responsible-gambling-guide__content-image {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-resources-responsible-gambling-guide__title {
    font-size: 2em;
  }

  .page-resources-responsible-gambling-guide__heading {
    font-size: 1.6em;
  }

  .page-resources-responsible-gambling-guide__subtitle {
    font-size: 1em;
  }

  .page-resources-responsible-gambling-guide__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}