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

.page-blog__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text */
  border-radius: 10px;
}

.page-blog__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

.page-blog__hero-button,
.page-blog__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45; /* Login color for prominent buttons */
  color: #000000; /* Dark text for FCBC45 background */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog__hero-button:hover,
.page-blog__cta-button:hover {
  background-color: #E0A73A;
}

.page-blog__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  font-size: 1em;
}

.page-blog__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog__paragraph {
  margin-bottom: 20px;
  color: #333333;
}

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

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

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

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

.page-blog__card-content {
  padding: 25px;
}

.page-blog__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #000000;
}

.page-blog__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-blog__card-title a:hover {
  color: #FCBC45;
}

.page-blog__card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-blog__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog__card-button:hover {
  background-color: #333333;
}

.page-blog__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
}

.page-blog__call-to-action-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-blog__call-to-action-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-blog__cta-button--download {
  margin-top: 30px;
}

.page-blog__cta-button--promo {
  margin-top: 30px;
}

.page-blog__cta-button--join {
  margin-top: 30px;
  background-color: #FCBC45;
  color: #000000;
}

.page-blog__cta-button--join:hover {
  background-color: #E0A73A;
}

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

  .page-blog__hero-description {
    font-size: 0.9em;
  }

  .page-blog__hero-content {
    padding: 15px;
  }

  .page-blog__section-title {
    font-size: 1.8em;
  }

  .page-blog__sub-section-title {
    font-size: 1.5em;
  }

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

  .page-blog__article-image {
    height: 200px;
  }

  .page-blog__call-to-action-title {
    font-size: 1.8em;
  }

  .page-blog__call-to-action-description {
    font-size: 1em;
  }

  .page-blog__hero-image,
  .page-blog__article-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-button,
  .page-blog__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-blog__hero-title {
    font-size: 1.8em;
  }

  .page-blog__content-area {
    padding: 20px 15px;
  }
}