.page-news {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8;
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-news__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* Ensure high contrast */
}

.page-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0; /* Ensure high contrast */
}

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

.page-news__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  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;
  border: none;
  cursor: pointer;
}

.page-news__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-news__hero-button--secondary {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-news__hero-button--secondary:hover {
  background-color: #1565b3;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-news__section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-news__latest-news, .page-news__market-analysis, .page-news__guides-strategies, .page-news__promotions-events, .page-news__why-choose {
  padding: 40px 0;
}

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

.page-news__article-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, box-shadow 0.3s ease;
}

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

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

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

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

.page-news__article-title a {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFD700;
}

.page-news__article-date {
  font-size: 0.9em;
  color: #888888;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 4 lines */
  -webkit-box-orient: vertical;
}

.page-news__read-more {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-news__read-more:hover {
  background-color: #e6c200;
}

.page-news__cta-banner {
  background: linear-gradient(90deg, #1E90FF, #FFD700);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.page-news__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-news__cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-news__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-news__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__cta-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.page-news__analysis-grid, .page-news__guide-grid, .page-news__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-news__analysis-item, .page-news__guide-item, .page-news__promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-news__analysis-item:hover, .page-news__guide-item:hover, .page-news__promo-item:hover {
  transform: translateY(-5px);
}

.page-news__analysis-image, .page-news__guide-image, .page-news__promo-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.page-news__analysis-title, .page-news__guide-title, .page-news__promo-title {
  font-size: 1.4em;
  color: #1E90FF;
  padding: 20px;
  margin-bottom: 0;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-news__guide-title a, .page-news__promo-title a {
  color: #1E90FF;
  text-decoration: none;
}

.page-news__guide-title a:hover, .page-news__promo-title a:hover {
  color: #FFD700;
}

.page-news__analysis-text, .page-news__guide-text, .page-news__promo-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-news__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-news__promo-button:hover {
  background-color: #e6c200;
}

.page-news__advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-news__advantage-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-news__advantage-text {
  font-size: 1em;
  color: #555555;
}

.page-news__final-cta {
  text-align: center;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 80px;
}

.page-news__final-cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-news__final-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news__final-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__hero-description {
    font-size: 1.1em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__cta-title {
    font-size: 2em;
  }
  .page-news__article-grid, .page-news__analysis-grid, .page-news__guide-grid, .page-news__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news {
    padding-top: var(--header-offset, 200px); /* Adjust for mobile header offset */
  }
  .page-news__hero-section {
    padding: 60px 0;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__hero-button {
    width: 80%;
    max-width: 300px;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-news__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-news__cta-title {
    font-size: 1.8em;
  }
  .page-news__cta-text {
    font-size: 1em;
  }
  .page-news__final-cta-text {
    font-size: 1.5em;
  }
  .page-news__final-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-news__article-image, .page-news__analysis-image, .page-news__guide-image, .page-news__promo-image {
    height: 200px;
  }
  .page-news__article-title, .page-news__analysis-title, .page-news__guide-title, .page-news__promo-title {
    font-size: 1.2em;
    min-height: unset;
  }
  .page-news__article-excerpt {
    -webkit-line-clamp: 3; /* Adjust for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-description {
    font-size: 0.9em;
  }
  .page-news__hero-button {
    width: 90%;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__cta-title {
    font-size: 1.5em;
  }
  .page-news__final-cta-text {
    font-size: 1.2em;
  }
  .page-news__final-cta-button {
    font-size: 1em;
  }
  .page-news__article-grid, .page-news__analysis-grid, .page-news__guide-grid, .page-news__promo-grid {
    grid-template-columns: 1fr;
  }
}