.page-blog {
  color: #333333;
}

.page-blog__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure spacing for fixed header */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.page-blog__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-blog__hero-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-blog__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__hero-button--primary {
  background-color: #FFD700;
  color: #1E90FF;
}

.page-blog__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-blog__hero-button--secondary {
  background-color: #1E90FF;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog__hero-button--secondary:hover {
  background-color: #1565b3;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.page-blog__latest-articles, .page-blog__featured-content, .page-blog__category-overview, .page-blog__cta-section, .page-blog__more-insights {
  padding: 60px 0;
}

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

.page-blog__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-blog__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-blog__article-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-blog__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-blog__article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog__article-title a {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-blog__article-excerpt {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog__read-more:hover {
  color: #1E90FF;
}

.page-blog__featured-content {
  background-color: #f8f8f8;
}

.page-blog__featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-blog__featured-text p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555555;
}

.page-blog__featured-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__featured-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-blog__featured-image-wrapper {
  text-align: center;
}

.page-blog__featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 500px; /* Example display size */
  height: 375px; /* Example display size (4:3 aspect ratio for 1000x750) */
  object-fit: cover;
}

.page-blog__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-blog__category-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-blog__category-icon {
  width: 120px; /* Min 200px rule applies to content area images. These are illustrative, but must be >=200px */
  height: 90px; /* Placeholder for 400x300. Ensure actual image is >=200px */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog__category-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-blog__category-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__category-title a:hover {
  color: #1E90FF;
}

.page-blog__category-description {
  font-size: 0.95em;
  color: #777777;
  line-height: 1.5;
}

.page-blog__cta-section {
  background: linear-gradient(90deg, #1E90FF, #0056b3);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

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

.page-blog__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-blog__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__more-insights {
  background-color: #f0f0f0;
}

.page-blog__insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.page-blog__insights-item {
  margin-bottom: 15px;
}

.page-blog__insights-item a {
  font-size: 1.1em;
  color: #1E90FF;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.page-blog__insights-item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.page-blog__insights-item a:hover {
  color: #FFD700;
}

.page-blog__insights-item a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog__hero-title {
    font-size: 2.8em;
  }
  .page-blog__featured-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-blog__featured-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-blog__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 200px); /* Adjust for mobile header offset */
  }
  .page-blog__hero-title {
    font-size: 2.2em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__latest-articles, .page-blog__featured-content, .page-blog__category-overview, .page-blog__cta-section, .page-blog__more-insights {
    padding: 40px 0;
  }
  .page-blog__article-image {
    height: 180px;
  }
  .page-blog__article-title {
    font-size: 1.3em;
  }
  .page-blog__category-icon {
    width: 150px; /* Placeholder for 400x300. Ensure actual image is >=200px */
    height: 112px; /* Placeholder for 400x300. Ensure actual image is >=200px */
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 1.8em;
  }
  .page-blog__hero-description {
    font-size: 0.9em;
  }
  .page-blog__hero-button {
    width: 90%;
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__article-image {
    height: 150px;
  }
  .page-blog__article-title {
    font-size: 1.1em;
  }
  .page-blog__cta-title {
    font-size: 1.5em;
  }
}