/* style/blog-responsible-gambling-guide.css */
/* Body background is #0A0A0A (dark), so use light text. */
/* Using custom color #FFF6D6 for main text. */

.page-blog-responsible-gambling-guide {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Main text color for dark background */
  line-height: 1.6;
  font-size: 1rem;
}

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

/* Hero Section */
.page-blog-responsible-gambling-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: #0A0A0A; /* Matches body background */
}

.page-blog-responsible-gambling-guide__hero-image {
  width: 100%;
  max-width: 1920px; /* Example max width, will be constrained by container */
  height: auto;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-blog-responsible-gambling-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-responsible-gambling-guide__main-title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  color: #F2C14E; /* Brand color for main title */
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  max-width: 100%; /* Ensure it doesn't overflow */
}

.page-blog-responsible-gambling-guide__description {
  font-size: 1.15rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-responsible-gambling-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  max-width: 100%;
}

.page-blog-responsible-gambling-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-blog-responsible-gambling-guide__btn-primary:hover {
  background: linear-gradient(180deg, #ffe080 0%, #e6b02a 100%);
  transform: translateY(-2px);
}

.page-blog-responsible-gambling-guide__btn-secondary {
  background: #111111; /* Card BG color */
  color: #F2C14E; /* Brand color */
  border: 2px solid #3A2A12; /* Border color */
  margin-left: 15px;
}

.page-blog-responsible-gambling-guide__btn-secondary:hover {
  background: rgba(17, 17, 17, 0.8);
  transform: translateY(-2px);
}

.page-blog-responsible-gambling-guide__button-group {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


/* General Section Styling */
.page-blog-responsible-gambling-guide__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Consistent dark background */
}

.page-blog-responsible-gambling-guide__section:nth-of-type(even) {
  background-color: #111111; /* Card BG for alternating sections */
}

.page-blog-responsible-gambling-guide__section-title {
  font-size: 2rem;
  color: #F2C14E; /* Brand color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-responsible-gambling-guide__sub-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Accent color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-responsible-gambling-guide__text-block {
  margin-bottom: 20px;
  color: #FFF6D6; /* Main text color */
}

.page-blog-responsible-gambling-guide__list {
  list-style-type: disc;
  padding-left: 40px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-responsible-gambling-guide__list li {
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-blog-responsible-gambling-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-responsible-gambling-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  min-width: 200px; /* Ensure content images are not too small */
  min-height: 200px;
}

/* FAQ Section */
.page-blog-responsible-gambling-guide__faq-section {
  padding-bottom: 80px;
}

.page-blog-responsible-gambling-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-responsible-gambling-guide__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-responsible-gambling-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111;
  color: #FFF6D6;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-responsible-gambling-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-responsible-gambling-guide__faq-title {
  margin: 0;
  color: inherit; /* Inherit color from question */
  font-size: 1.2rem;
  font-weight: bold;
}

.page-blog-responsible-gambling-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Brand color for toggle icon */
}

.page-blog-responsible-gambling-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #111111; /* Ensure consistent background */
}

.page-blog-responsible-gambling-guide__faq-answer p {
  margin-top: 0;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-responsible-gambling-guide__faq-item.active .page-blog-responsible-gambling-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-blog-responsible-gambling-guide__faq-item.active .page-blog-responsible-gambling-guide__faq-toggle {
  transform: rotate(45deg); /* Change + to X or rotate */
}

/* Ensure no CSS filters are used on images */
.page-blog-responsible-gambling-guide img {
  filter: none; /* Explicitly remove any default filters if they exist */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-responsible-gambling-guide__main-title {
    font-size: 2.2rem;
  }
  .page-blog-responsible-gambling-guide__section-title {
    font-size: 1.8rem;
  }
}