.page-blog-latest-news {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-blog-latest-news {
    overflow-x: hidden;
  }
}

.page-blog-latest-news__hero-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-blog-latest-news__hero-content {
  max-width: 900px;
  margin-bottom: 20px;
}

.page-blog-latest-news__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-news__hero-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

.page-blog-latest-news__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-latest-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
  font-size: 1em;
}

.page-blog-latest-news__btn--register {
  background-color: #000000; /* Main color for register button */
  color: #FFFFFF; /* White text on black button */
  border: 2px solid #000000;
}

.page-blog-latest-news__btn--register:hover {
  background-color: #333333;
  color: #FCBC45;
}

.page-blog-latest-news__btn--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text on login button */
  border: 2px solid #FCBC45;
}

.page-blog-latest-news__btn--login:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

.page-blog-latest-news__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-news__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-blog-latest-news__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-latest-news__intro-paragraph,
.page-blog-latest-news__paragraph {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #333333;
  text-align: justify;
}

.page-blog-latest-news__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-news__article-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-news__article-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-news__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-latest-news__article-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-news__article-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-latest-news__article-title a {
  color: #000000;
  text-decoration: none;
}

.page-blog-latest-news__article-title a:hover {
  color: #FCBC45;
}

.page-blog-latest-news__article-summary {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-latest-news__read-more {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push to bottom */
}

.page-blog-latest-news__read-more:hover {
  text-decoration: underline;
}

.page-blog-latest-news__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-news__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-latest-news__btn--explore {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-blog-latest-news__btn--explore:hover {
  background-color: #333333;
  color: #FCBC45;
}

.page-blog-latest-news__call-to-action {
  background-color: #f0f0f0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-blog-latest-news__call-to-action .page-blog-latest-news__section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.page-blog-latest-news__action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-news__hero-title {
    font-size: 2.5em;
  }
  .page-blog-latest-news__section-title {
    font-size: 2em;
  }
  .page-blog-latest-news__sub-section-title {
    font-size: 1.6em;
  }
  .page-blog-latest-news__hero-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news__hero-section {
    padding: 40px 15px;
  }
  .page-blog-latest-news__hero-title {
    font-size: 2em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-news__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-latest-news__btn {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
  }
  .page-blog-latest-news__content-area {
    padding: 30px 15px;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__sub-section-title {
    font-size: 1.4em;
  }
  .page-blog-latest-news__article-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-news__hero-image,
  .page-blog-latest-news__section-image,
  .page-blog-latest-news__article-image {
    max-width: 100%;
    height: auto; /* Allow height to adjust for responsiveness */
  }
  .page-blog-latest-news__action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-latest-news__intro-paragraph,
  .page-blog-latest-news__paragraph,
  .page-blog-latest-news__article-summary {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.6em;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.5em;
  }
  .page-blog-latest-news__sub-section-title {
    font-size: 1.2em;
  }
  .page-blog-latest-news__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* Ensure all content images meet the minimum size requirement and no filter is applied */
.page-blog-latest-news__hero-image,
.page-blog-latest-news__article-image,
.page-blog-latest-news__section-image {
  min-width: 200px;
  min-height: 200px;
  filter: none; /* Absolutely no CSS filter to change image color */
}

/* Specific rule for content images within the main content area */
.page-blog-latest-news__content-area img {
  min-width: 200px;
  min-height: 200px;
  filter: none; /* Absolutely no CSS filter to change image color */
}