.page-blog {
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF; /* Text Main */
  padding-bottom: 40px;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.page-blog__hero-section {
  position: relative;
  text-align: center;
  padding: 10px 0 40px;
  overflow: hidden;
}

.page-blog__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/6; /* Approx 1600x600 */
  margin-bottom: 20px;
}

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

.page-blog__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F3F8FF; /* Text Main */
  letter-spacing: -0.5px;
}

.page-blog__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog__hero-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px #4FA8FF;
}

.page-blog__articles-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-blog__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F3F8FF; /* Text Main */
  position: relative;
  padding-bottom: 15px;
}

.page-blog__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E; /* Gold */
  border-radius: 2px;
}

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

.page-blog__article-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

.page-blog__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px #4FA8FF;
}

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

.page-blog__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

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

.page-blog__article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-blog__article-excerpt {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-blog__article-date {
  font-size: 0.85rem;
  color: #2B73F6; /* Primary Blue from Button */
  display: block;
  margin-bottom: 10px;
}

.page-blog__read-more {
  font-size: 0.95rem;
  color: #F2C14E; /* Gold */
  font-weight: 600;
  transition: color 0.3s ease;
}

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

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

.page-blog__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  background: #1D5FD1; /* Auxiliary Color */
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #113B7A;
}

.page-blog__view-all-button:hover {
  background-color: #2B73F6; /* Lighter Blue */
  transform: translateY(-1px);
}

.page-blog__cta-section {
  background-color: #113B7A; /* Main Color */
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #1B3357; /* Divider */
}

.page-blog__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-blog__cta-description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 16px 35px;
  background: linear-gradient(180deg, #F2C14E 0%, #D6A83C 100%); /* Gold gradient */
  color: #08162B; /* Deep Navy for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px #F2C14E;
}

/* Mobile responsiveness */
@media (max-width: 849px) {
  .page-blog__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-blog__hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .page-blog__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-blog__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__article-image {
    height: 180px; /* Adjust height for smaller screens */
  }
  .page-blog__article-title {
    font-size: 1.1rem;
  }
  .page-blog__article-excerpt {
    font-size: 0.9rem;
  }
  .page-blog__cta-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }
  .page-blog__cta-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }
}

@media (max-width: 549px) {
  .page-blog__hero-section {
    padding: 10px 0 30px;
  }
  .page-blog__hero-content {
    padding: 0 15px;
  }
  .page-blog__hero-image-wrapper {
    aspect-ratio: 16/9; /* More standard mobile banner ratio */
  }
  .page-blog__articles-section {
    margin: 30px auto;
    padding: 0 15px;
  }
  .page-blog__articles-grid {
    gap: 20px;
  }
  .page-blog__article-image {
    height: 160px;
  }
  .page-blog__article-content {
    padding: 15px;
  }
  .page-blog__article-title {
    font-size: 1rem;
  }
  .page-blog__article-excerpt {
    font-size: 0.85rem;
  }
  .page-blog__cta-section {
    padding: 40px 15px;
    margin-top: 40px;
  }
  .page-blog__cta-button {
    padding: 14px 25px;
  }

  /* Ensure all content images are responsive on mobile */
  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}