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

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

.page-hi8823-news__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-hi8823-news__hero-section {
  background: linear-gradient(135deg, #26A9E0, #67c3e9);
  padding: 80px 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hi8823-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hi8823-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-hi8823-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hi8823-news__hero-button {
  display: inline-block;
  background-color: #EA7C07; /* Login button color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-hi8823-news__hero-button:hover {
  background-color: #d96e06;
}

.page-hi8823-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-hi8823-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%); /* Allowed for stylistic effect, not color change */
}

.page-hi8823-news__latest-news-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-hi8823-news__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-hi8823-news__card-content {
  padding: 25px;
}

.page-hi8823-news__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  min-height: 70px; /* Ensure consistent height for titles */
}

.page-hi8823-news__card-title a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-hi8823-news__card-title a:hover {
  text-decoration: underline;
}

.page-hi8823-news__card-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

.page-hi8823-news__card-excerpt {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-hi8823-news__read-more {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-hi8823-news__read-more:hover {
  color: #d96e06;
}

.page-hi8823-news__categories-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-hi8823-news__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-hi8823-news__category-item {
  background-color: #f0f8ff;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-hi8823-news__category-item:hover {
  background-color: #e0f2ff;
}

.page-hi8823-news__category-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-hi8823-news__category-title a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-hi8823-news__category-title a:hover {
  text-decoration: underline;
}

.page-hi8823-news__category-description {
  font-size: 0.95em;
  color: #555555;
}

.page-hi8823-news__featured-article-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-hi8823-news__featured-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-hi8823-news__featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.page-hi8823-news__featured-content {
  padding: 30px;
}

.page-hi8823-news__featured-title {
  font-size: 2em;
  margin-bottom: 15px;
}

.page-hi8823-news__featured-title a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-hi8823-news__featured-title a:hover {
  text-decoration: underline;
}

.page-hi8823-news__featured-date {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-hi8823-news__featured-excerpt {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 30px;
}

.page-hi8823-news__newsletter-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-hi8823-news__newsletter-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-hi8823-news__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.page-hi8823-news__newsletter-input {
  flex-grow: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  color: #333333;
}

.page-hi8823-news__newsletter-input::placeholder {
  color: #999999;
}

.page-hi8823-news__newsletter-button {
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-hi8823-news__newsletter-button:hover {
  background-color: #d96e06;
}

.page-hi8823-news__more-articles-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-hi8823-news__article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-hi8823-news__article-item {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0;
}

.page-hi8823-news__article-item:last-child {
  border-bottom: none;
}

.page-hi8823-news__article-link {
  text-decoration: none;
  display: block;
}

.page-hi8823-news__article-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.page-hi8823-news__article-link:hover .page-hi8823-news__article-title {
  color: #1b769d;
}

.page-hi8823-news__article-meta {
  font-size: 0.9em;
  color: #666666;
}

.page-hi8823-news__view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-hi8823-news__view-all-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-hi8823-news__view-all-button:hover {
  background-color: #1b769d;
}

.page-hi8823-news__cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #26A9E0, #1b769d);
  color: #FFFFFF;
  text-align: center;
}

.page-hi8823-news__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-hi8823-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hi8823-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-hi8823-news__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-hi8823-news__cta-button--primary {
  background-color: #EA7C07;
  color: #FFFFFF;
}

.page-hi8823-news__cta-button--primary:hover {
  background-color: #d96e06;
  transform: translateY(-3px);
}

.page-hi8823-news__cta-button--secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #FFFFFF;
}

.page-hi8823-news__cta-button--secondary:hover {
  background-color: #e0f2ff;
  color: #1b769d;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-hi8823-news__hero-title {
    font-size: 2.8em;
  }
  .page-hi8823-news__section-title {
    font-size: 2em;
  }
  .page-hi8823-news__featured-image {
    height: 300px;
  }
  .page-hi8823-news__featured-title {
    font-size: 1.8em;
  }
  .page-hi8823-news__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-hi8823-news__hero-section {
    padding: 60px 0;
  }
  .page-hi8823-news__hero-title {
    font-size: 2.2em;
  }
  .page-hi8823-news__hero-description {
    font-size: 1em;
  }
  .page-hi8823-news__news-grid {
    grid-template-columns: 1fr;
  }
  .page-hi8823-news__categories-grid {
    grid-template-columns: 1fr;
  }
  .page-hi8823-news__featured-card {
    flex-direction: column;
  }
  .page-hi8823-news__featured-image {
    height: 250px;
  }
  .page-hi8823-news__newsletter-form {
    flex-direction: column;
  }
  .page-hi8823-news__cta-title {
    font-size: 2em;
  }
  .page-hi8823-news__cta-buttons {
    flex-direction: column;
  }
  .page-hi8823-news__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-hi8823-news__hero-title {
    font-size: 1.8em;
  }
  .page-hi8823-news__section-title {
    font-size: 1.8em;
  }
  .page-hi8823-news__card-title {
    font-size: 1.3em;
  }
  .page-hi8823-news__featured-title {
    font-size: 1.5em;
  }
  .page-hi8823-news__cta-title {
    font-size: 1.8em;
  }
}