/* style/blog-bingoplus-guide.css */

/* Base styles for the page content, ensuring light text on the dark body background */
.page-blog-bingoplus-guide {
  color: #FFF6D6; /* Text Main color for general content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Background color */
}

/* Section styling */
.page-blog-bingoplus-guide__section {
  padding: 60px 20px;
  text-align: center;
  /* body already has padding-top from --header-offset, so this section does not need it */
}

.page-blog-bingoplus-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-bingoplus-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-blog-bingoplus-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-bingoplus-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-bingoplus-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  background: #111111; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  color: #FFF6D6; /* Text Main color */
}

.page-blog-bingoplus-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary color for main title */
  letter-spacing: 1px;
}

.page-blog-bingoplus-guide__intro-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main color */
}

/* Titles */
.page-blog-bingoplus-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 40px;
  color: #F2C14E; /* Primary color for section titles */
  text-align: center;
}

.page-blog-bingoplus-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for sub-titles */
  text-align: left;
}

.page-blog-bingoplus-guide__mini-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main color */
  text-align: left;
}

/* Content blocks */
.page-blog-bingoplus-guide__content-block {
  text-align: left;
  margin-bottom: 40px;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-bingoplus-guide__content-block p {
  margin-bottom: 15px;
}

.page-blog-bingoplus-guide__content-block strong {
  color: #F2C14E; /* Highlight keywords with primary color */
}

/* Lists */
.page-blog-bingoplus-guide__numbered-list,
.page-blog-bingoplus-guide__bullet-list {
  margin-left: 25px;
  margin-bottom: 20px;
  list-style-position: outside;
  color: #FFF6D6; /* Text Main color */
}