.page-blog {
  color: #333333; /* Default text color for light body background */
}

.page-blog__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-blog__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-blog__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-blog__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-blog__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A1A1A; /* Main color as text */
  border: 2px solid #FFD700;
}

.page-blog__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-blog__btn--tertiary {
  background-color: #1A1A1A; /* Main color */
  color: #FFD700; /* Auxiliary color */
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-blog__btn--tertiary:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

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

.page-blog__section-title {
  font-size: 2.5em;
  color: #1A1A1A; /* Dark text on assumed white body */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-blog__section-intro {
  font-size: 1.1em;
  color: #333333; /* Dark text on assumed white body */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-blog__articles-section, .page-blog__news-updates-section, .page-blog__expert-insights-section, .page-blog__cta-section {
  padding: 80px 0;
}

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

.page-blog__article-card, .page-blog__insight-card {
  background-color: #ffffff; /* White card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-blog__article-image, .page-blog__insight-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, ensuring min 200px */
  object-fit: cover;
  display: block;
}

.page-blog__article-content, .page-blog__insight-card > div {
  padding: 25px;
}

.page-blog__article-title, .page-blog__insight-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1A1A1A; /* Dark text */
}

.page-blog__article-title a, .page-blog__insight-title a {
  color: #1A1A1A;
  text-decoration: none;
}

.page-blog__article-title a:hover, .page-blog__insight-title a:hover {
  color: #FFD700;
}

.page-blog__article-description, .page-blog__insight-description {
  font-size: 1em;
  color: #555555; /* Slightly lighter dark text */
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-blog__news-list {
  display: grid;
  gap: 30px;
}

.page-blog__news-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: box-shadow 0.3s ease;
}

.page-blog__news-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-blog__news-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-blog__news-date {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 15px;
}

.page-blog__news-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-blog__cta-section {
  background-color: #1A1A1A; /* Main color as background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-blog__cta-title {
  font-size: 3em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-blog__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 3em;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    min-height: 400px;
  }
  .page-blog__hero-title {
    font-size: 2.5em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__hero-actions {
    flex-direction: column;
  }
  .page-blog__btn {
    width: 100%;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__section-intro {
    font-size: 0.9em;
  }
  .page-blog__article-grid, .page-blog__insight-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__article-image, .page-blog__insight-image {
    height: 250px; /* Ensure min 200px */
  }
  .page-blog__news-title {
    font-size: 1.5em;
  }
  .page-blog__cta-title {
    font-size: 2em;
  }
  
  /* Mobile content image overflow prevention */
  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 2em;
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
  .page-blog__hero-content {
    padding: 15px;
  }
  .page-blog__btn {
    padding: 12px 25px;
  }
}