/* style/blog-choosing-pagcor-licensed-platforms.css */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg: #111111;
  --main-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --dark-text: #333333; /* For contrast on light backgrounds */
  --light-text: #ffffff; /* For contrast on dark backgrounds */
}

.page-blog-choosing-pagcor-licensed-platforms {
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--main-bg); /* Ensuring consistency with body background if applicable */
}

/* Hero Section Styling */
.page-blog-choosing-pagcor-licensed-platforms__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-choosing-pagcor-licensed-platforms__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-choosing-pagcor-licensed-platforms__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-choosing-pagcor-licensed-platforms__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure content area is visible */
}

.page-blog-choosing-pagcor-licensed-platforms__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--light-text);
  margin-bottom: 20px;
  max-width: 100%;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
}

.page-blog-choosing-pagcor-licensed-platforms__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
}

.page-blog-choosing-pagcor-licensed-platforms__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}