.page-blog {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from body bg */
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog__section-spacing {
  padding: 60px 0;
}

.page-blog__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
  line-height: 1.3;
}

.page-blog__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

/* Hero Section */
.page-blog__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 10px; /* Small top padding */
  overflow: hidden;
  background-color: #08162B;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of the image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.page-blog__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog__hero-description {
  font-size: 19px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Buttons */
.page-blog__btn-primary,
.page-blog__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-blog__btn-secondary {
  background: #10233F; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #244D84; /* Border */
}

.page-blog__btn-secondary:hover {
  background: #244D84; /* Border */
  color: #F3F8FF; /* Text Main */
  transform: translateY(-2px);
}

.page-blog__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Article Grid */
.page-blog__articles-grid,
.page-blog__guides-grid,
.page-blog__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog__article-card,
.page-blog__guide-card,
.page-blog__promotion-card {
  background: #10233F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__article-card:hover,
.page-blog__guide-card:hover,
.page-blog__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog__article-image,
.page-blog__guide-image,
.page-blog__promotion-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

.page-blog__article-content,
.page-blog__guide-content,
.page-blog__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog__article-title,
.page-blog__guide-title,
.page-blog__promotion-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-blog__article-title a,
.page-blog__guide-title a,
.page-blog__promotion-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__article-title a:hover,
.page-blog__guide-title a:hover,
.page-blog__promotion-title a:hover {
  color: #4FA8FF; /* Glow */
}

.page-blog__article-meta {
  font-size: 14px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog__article-excerpt,
.page-blog__guide-excerpt,
.page-blog__promotion-excerpt {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog__read-more {
  display: inline-block;
  color: #2B73F6;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-blog__read-more:hover {
  color: #4FA8FF; /* Glow */
}

/* Dark Section */
.page-blog__dark-section {
  background-color: #08162B; /* Deep Navy */
}

/* FAQ Section */
details.page-blog__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-blog__faq-item summary.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-blog__faq-item summary.page-blog__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog__faq-item summary.page-blog__faq-question:hover {
  background: rgba(36, 77, 132, 0.5); /* Lighter Border color for hover */
}

.page-blog__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}

.page-blog__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog__faq-item .page-blog__faq-answer {
  padding: 0 20px 20px;
  background: rgba(16, 35, 63, 0.8); /* Slightly darker Card BG */
  border-radius: 0 0 5px 5px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
  line-height: 1.7;
}

/* Final CTA Section */
.page-blog__cta-final-section {
  background: linear-gradient(90deg, #113B7A, #1D5FD1);
  text-align: center;
}

.page-blog__cta-final-content {
  padding: 50px 20px;
}

.page-blog__cta-final-content .page-blog__section-title {
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
}

.page-blog__cta-final-content .page-blog__section-description {
  color: #F3F8FF; /* Text Main */
  margin-bottom: 40px;
}

.page-blog__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__section-title {
    font-size: 32px;
  }
  .page-blog__section-description {
    font-size: 17px;
  }
  .page-blog__hero-description {
    font-size: 18px;
  }
  .page-blog__article-title, .page-blog__guide-title, .page-blog__promotion-title {
    font-size: 20px;
  }
  .page-blog__article-excerpt, .page-blog__guide-excerpt, .page-blog__promotion-excerpt {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-blog__section-spacing {
    padding: 40px 0;
  }

  .page-blog__section-title {
    font-size: 28px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .page-blog__section-description {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  /* Hero Section Mobile */
  .page-blog__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }
  .page-blog__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* HERO mobile must be contain */
    aspect-ratio: unset !important;
  }
  .page-blog__hero-content {
    padding: 30px 15px;
  }
  .page-blog__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-blog__hero-description {
    font-size: 16px;
  }

  /* Article/Guide/Promotion Grid Mobile */
  .page-blog__articles-grid,
  .page-blog__guides-grid,
  .page-blog__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .page-blog__articles-section, .page-blog__guides-section, .page-blog__promotions-section {
    overflow-x: hidden;
  }

  .page-blog__article-image,
  .page-blog__guide-image,
  .page-blog__promotion-image {
    height: 180px;
  }

  .page-blog__article-content,
  .page-blog__guide-content,
  .page-blog__promotion-content {
    padding: 20px;
  }

  .page-blog__article-title,
  .page-blog__guide-title,
  .page-blog__promotion-title {
    font-size: 18px;
  }

  .page-blog__article-excerpt,
  .page-blog__guide-excerpt,
  .page-blog__promotion-excerpt {
    font-size: 14px;
  }

  /* Generic Image & Container Mobile */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog__container,
  .page-blog__articles-section,
  .page-blog__guides-section,
  .page-blog__promotions-section,
  .page-blog__faq-section,
  .page-blog__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Buttons Mobile */
  .page-blog__btn-primary,
  .page-blog__btn-secondary,
  .page-blog a[class*="button"],
  .page-blog a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
  }
  .page-blog__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* FAQ Mobile */
  details.page-blog__faq-item summary.page-blog__faq-question {
    padding: 15px;
  }
  .page-blog__faq-qtext {
    font-size: 16px;
  }
  details.page-blog__faq-item .page-blog__faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }
}