.page-blog {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  background-color: #F4F7FB;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px;
}

.page-blog__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-blog__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  max-width: 100%;
}

.page-blog__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
  min-width: 200px; /* Ensure button is not too small */
}

.page-blog__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-blog__posts-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-blog__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog__post-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-blog__post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-blog__post-thumbnail {
  width: 100%;
  height: 225px; /* Fixed height for consistent look */
  object-fit: cover;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px;
}

.page-blog__post-content {
  padding: 20px;
}

.page-blog__post-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-blog__post-excerpt {
  font-size: 0.95em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-blog__post-date {
  font-size: 0.85em;
  color: #6FA3FF; /* Auxiliary color for date */
}

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

.page-blog__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
  min-width: 200px; /* Ensure button is not too small */
}

.page-blog__view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-blog__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-blog__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog__faq-item {
  background-color: #F4F7FB; /* Background */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #D6E2FF; /* Border */
}

.page-blog__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-blog__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 30px 0;
  }

  .page-blog__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-blog__description {
    font-size: 1em;
  }

  .page-blog__cta-button,
  .page-blog__view-all-button {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-blog__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog__posts-grid {
    grid-template-columns: 1fr;
  }

  .page-blog__post-thumbnail {
    height: 180px;
  }

  .page-blog__post-title {
    font-size: 1.2em;
  }

  .page-blog__faq-question {
    font-size: 1.1em;
  }

  .page-blog__hero-image,
  .page-blog__post-thumbnail,
  .page-blog__post-card img { /* Selects all images within blog content area */
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px; /* Enforcing minimum size for content images */
  }
  
  .page-blog__post-card {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-blog__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-blog__hero-content {
    padding: 0 10px;
  }
  .page-blog__cta-button,
  .page-blog__view-all-button {
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }
}