.page-blog {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-blog__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 0;
  text-align: center;
}

.page-blog__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.page-blog__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

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

.page-blog__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-blog__hero-cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-blog__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-blog__main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.page-blog__articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.page-blog__article-card {
  display: flex;
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-blog__article-image {
  width: 35%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog__article-content {
  padding: 25px;
  width: 65%;
}

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

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

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

.page-blog__article-meta {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

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

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

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

.page-blog__sidebar {
  padding-left: 20px;
}

.page-blog__sidebar-widget {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog__widget-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-blog__category-list,
.page-blog__popular-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog__category-list li,
.page-blog__popular-posts li {
  margin-bottom: 12px;
}

.page-blog__category-list a,
.page-blog__popular-posts a {
  color: #333333;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-blog__category-list a:hover,
.page-blog__popular-posts a:hover {
  color: #FCBC45;
}

.page-blog__cta-widget {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-blog__cta-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog__widget-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

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

.page-blog__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-blog__about-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-blog__about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog__about-section .page-blog__section-title {
  color: #FCBC45;
  margin-bottom: 30px;
}

.page-blog__about-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-blog__about-link {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__about-link:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog__main-grid {
    grid-template-columns: 1fr;
  }

  .page-blog__sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .page-blog__article-card {
    flex-direction: column;
  }

  .page-blog__article-image {
    width: 100%;
    height: 250px;
  }

  .page-blog__article-content {
    width: 100%;
  }
}

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

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

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

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

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

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

  .page-blog__articles-list img,
  .page-blog__sidebar-widget img,
  .page-blog__about-section img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-blog__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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