.page-blog {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
}

.page-blog__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--header-offset, 120px) 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog__hero-content {
  position: relative;
  z-index: 1;
}

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

.page-blog__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.8;
  color: #f0f0f0;
}

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

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

.page-blog__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-blog__button--register:hover {
  background-color: #e0e0e0;
  color: #000000;
}

.page-blog__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog__button--login:hover {
  background-color: #e6a73c;
  color: #000000;
}

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

.page-blog__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-blog__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__featured-posts {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-blog__post-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  min-height: 200px;
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
}

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

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

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

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

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

.page-blog__post-excerpt {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-blog__button--view-details {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-blog__button--view-details:hover {
  background-color: #333333;
}

.page-blog__insights-guides {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-blog__article {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}

.page-blog__article:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

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

.page-blog__article-text {
  font-size: 1.1em;
  color: #444444;
  line-height: 1.7;
}

.page-blog__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-blog__inline-link:hover {
  text-decoration: underline;
}

.page-blog__promotions-cta {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-blog__promo-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog__promo-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-blog__promo-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-blog__button--claim {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 180px;
}

.page-blog__button--claim:hover {
  background-color: #e6a73c;
}

.page-blog__cta-general {
    text-align: center;
    margin-top: 50px;
}

.page-blog__cta-general--bottom {
    margin-top: 60px;
}

.page-blog__cta-text {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-blog__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    min-width: 250px;
}

.page-blog__why-wk777 {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-blog__feature-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-blog__feature-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
}

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

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

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

  .page-blog__post-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-container {
    padding: var(--header-offset, 80px) 15px 40px;
  }

  .page-blog__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-blog__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }

  .page-blog__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-blog__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

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

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

  .page-blog__article-title {
    font-size: 1.6em;
  }

  .page-blog__article-text {
    font-size: 0.95em;
  }

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

  .page-blog__button--large {
      padding: 15px 30px;
      font-size: 1.1em;
      min-width: unset;
      width: 100%;
  }

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

  /* Ensure all images within .page-blog are responsive and not smaller than 200px */
  .page-blog img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
    object-fit: cover;
  }
  
  /* Override specific image sizes if they are smaller than 200px in content */
  .page-blog__post-image,
  .page-blog__hero-image {
      min-width: 200px;
      min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 1.8em;
  }

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

  .page-blog__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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

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

  .page-blog__article-title {
    font-size: 1.4em;
  }
  .page-blog__cta-text {
    font-size: 1.1em;
  }
}