/* style/blog-how-to-verify-pagcor-license.css */

/* Base styles for the page content, assuming dark body background from shared.css */
.page-blog-how-to-verify-pagcor-license {
  color: #FFF6D6; /* Text Main from custom palette */
  background-color: transparent; /* Rely on body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom before footer */
}

/* Hero Section */
.page-blog-how-to-verify-pagcor-license__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Minimal top padding as body handles header offset */
  padding-bottom: 60px;
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-blog-how-to-verify-pagcor-license__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-blog-how-to-verify-pagcor-license__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure minimum height even on small screens */
}

.page-blog-how-to-verify-pagcor-license__hero-content {
  max-width: 900px;
  margin: 40px auto 0; /* Add margin above content */
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any background elements */
}

.page-blog-how-to-verify-pagcor-license__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-how-to-verify-pagcor-license__description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Primary Button Style */
.page-blog-how-to-verify-pagcor-license__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color from custom palette */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-verify-pagcor-license__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-how-to-verify-pagcor-license__cta-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-blog-how-to-verify-pagcor-license__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}


/* General Section Styles */
.page-blog-how-to-verify-pagcor-license__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border color from custom palette */
}

.page-blog-how-to-verify-pagcor-license__section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-verify-pagcor-license__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-how-to-verify-pagcor-license__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

.page-blog-how-to-verify-pagcor-license__text-block {
  font-size: 1.05em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-blog-how-to-verify-pagcor-license__text-block a {
  color: #FFD36B; /* Glow color for links */
  text-decoration: underline;
}

.page-blog-how-to-verify-pagcor-license__text-block a:hover {
  color: #F2C14E; /* Main color on hover */
  text-decoration: none;
}

/* Image within content */
.page-blog-how-to-verify-pagcor-license__image-wrapper {
  margin: 40px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-verify-pagcor-license__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

/* Lists */
.page-blog-how-to-verify-pagcor-license__ordered-list,
.page-blog-how-to-verify-pagcor-license__unordered-list {
  list-style: none; /* Remove default list style */
  padding: 0;
  margin: 0 0 20px 0;
}

.page-blog-how-to-verify-pagcor-license__list-item {
  background-color: #111111; /* Card BG */
  border-left: 5px solid #F2C14E; /* Main color for accent */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-verify-pagcor-license__list-item-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow color for sub-titles */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-how-to-verify-pagcor-license__list-item p {
  color: #FFF6D6; /* Text Main */
  margin-bottom: 0;
}

/* FAQ Section */
.page-blog-how-to-verify-pagcor-license__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-verify-pagcor-license__faq-item {
  background-color: #111111; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}