/* style/news.css */
.page-news {
  padding-top: var(--header-offset, 120px);
  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, #8B0000);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-news__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-news__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-news__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin: 60px 0 20px;
  font-weight: bold;
}

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

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

.page-news__news-card, .page-news__promo-card, .page-news__explore-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__news-card:hover, .page-news__promo-card:hover, .page-news__explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-news__news-image, .page-news__promo-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-news__news-content, .page-news__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-card-title, .page-news__promo-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.page-news__news-card-title a, .page-news__promo-card-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-news__news-excerpt, .page-news__promo-excerpt {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-button, .page-news__promo-button, .page-news__explore-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news__read-more-button:hover, .page-news__promo-button:hover, .page-news__explore-button:hover {
  background-color: #ffe033;
  transform: translateY(-2px);
}

.page-news__view-all-button {
  display: block;
  width: fit-content;
  margin: 0 auto 80px;
  background-color: #8B0000;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__view-all-button:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

.page-news__industry-insights-section, .page-news__promotions-section, .page-news__explore-more-section {
  padding: 60px 0;
}

.page-news__cta-section {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-news__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-news__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-news__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

.page-news__explore-card {
  background-color: #f8f8f8;
  text-align: center;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-news__explore-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news__explore-card-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__explore-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 60px 0;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-news__news-grid, .page-news__promotions-grid, .page-news__explore-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__news-content, .page-news__promo-content {
    padding: 20px;
  }
  .page-news__news-card-title, .page-news__promo-card-title {
    font-size: 1.3em;
  }
  .page-news__cta-section {
    padding: 60px 0;
  }
  .page-news__cta-title {
    font-size: 2em;
  }
  .page-news__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-news__view-all-button {
    margin-bottom: 60px;
  }
  .page-news__explore-card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__news-image, .page-news__promo-image {
    height: 180px;
  }
  .page-news__cta-title {
    font-size: 1.6em;
  }
  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__container {
    padding: 0 15px;
  }
}