/* style/index-industry-news-highlights.css */
.page-index-industry-news-highlights {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text on dark background */
  background-color: #0A2E36; /* Main dark background */
  line-height: 1.6;
}

.page-index-industry-news-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-industry-news-highlights__section {
  padding: 60px 0;
}

.page-index-industry-news-highlights__hero {
  background: linear-gradient(135deg, #0A2E36, #1a4a51); /* Darker gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-industry-news-highlights__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]'); /* Subtle background pattern */
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-industry-news-highlights__hero > * {
  position: relative;
  z-index: 1;
}

.page-index-industry-news-highlights__hero-title {
  font-size: 3.2em;
  color: #E0B34C; /* Auxiliary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-industry-news-highlights__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-index-industry-news-highlights__hero-cta {
  display: inline-block;
  background-color: #E0B34C; /* Auxiliary color for CTA */
  color: #0A2E36; /* Dark text on auxiliary background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-index-industry-news-highlights__hero-cta:hover {
  background-color: #ffc857; /* Slightly lighter gold on hover */
  transform: translateY(-3px);
}

.page-index-industry-news-highlights__section-title {
  font-size: 2.5em;
  color: #E0B34C;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.page-index-industry-news-highlights__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B34C;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-index-industry-news-highlights__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #CCCCCC;
}

.page-index-industry-news-highlights__latest-news {
  background-color: #0A2E36;
}

.page-index-industry-news-highlights__news-card {
  display: flex;
  background-color: #1a4a51; /* Slightly lighter dark background */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-industry-news-highlights__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-industry-news-highlights__news-image {
  width: 35%;
  height: auto;
  object-fit: cover;
  min-height: 250px;
}

.page-index-industry-news-highlights__news-content {
  padding: 30px;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-industry-news-highlights__news-title {
  font-size: 1.8em;
  color: #E0B34C;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-index-industry-news-highlights__news-meta {
  font-size: 0.9em;
  color: #999999;
  margin-bottom: 15px;
}

.page-index-industry-news-highlights__news-summary {
  font-size: 1.05em;
  color: #F0F0F0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-industry-news-highlights__read-more-btn {
  display: inline-block;
  background-color: #E0B34C;
  color: #0A2E36;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  font-size: 0.95em;
}

.page-index-industry-news-highlights__read-more-btn:hover {
  background-color: #ffc857;
}

.page-index-industry-news-highlights__analysis {
  background-color: #113f48; /* Slightly different dark shade */
}

.page-index-industry-news-highlights__analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-index-industry-news-highlights__analysis-item {
  background-color: #0A2E36;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-industry-news-highlights__analysis-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-index-industry-news-highlights__analysis-title {
  font-size: 2em;
  color: #E0B34C;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-index-industry-news-highlights__analysis-text {
  color: #F0F0F0;
  margin-bottom: 25px;
}

.page-index-industry-news-highlights__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #E0B34C;
  border: 2px solid #E0B34C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.95em;
}

.page-index-industry-news-highlights__btn-secondary:hover {
  background-color: #E0B34C;
  color: #0A2E36;
}

.page-index-industry-news-highlights__cta-banner {
  background-color: #E0B34C; /* Auxiliary color for banner */
  color: #0A2E36; /* Dark text on auxiliary background */
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.page-index-industry-news-highlights__cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,light_pattern]'); /* Lighter background pattern */
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-industry-news-highlights__cta-banner > * {
  position: relative;
  z-index: 1;
}

.page-index-industry-news-highlights__cta-title {
  font-size: 2.8em;
  color: #0A2E36;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index-industry-news-highlights__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-index-industry-news-highlights__cta-button {
  display: inline-block;
  background-color: #0A2E36; /* Main color for CTA button */
  color: #E0B34C; /* Auxiliary color for text */  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;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-industry-news-highlights__cta-button:hover {
  background-color: #1a4a51; /* Slightly lighter main color on hover */
  transform: translateY(-5px);
}

.page-index-industry-news-highlights__cta-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-industry-news-highlights__newsletter {
  background-color: #0A2E36;
  text-align: center;
}

.page-index-industry-news-highlights__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-index-industry-news-highlights__newsletter-input {
  width: 350px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #E0B34C;
  background-color: #1a4a51;
  color: #F0F0F0;
  font-size: 1em;
}

.page-index-industry-news-highlights__newsletter-input::placeholder {
  color: #CCCCCC;
}

.page-index-industry-news-highlights__newsletter-button {
  background-color: #E0B34C;
  color: #0A2E36;
  padding: 15px 30px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-industry-news-highlights__newsletter-button:hover {
  background-color: #ffc857;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-industry-news-highlights__hero-title {
    font-size: 2.5em;
  }
  .page-index-industry-news-highlights__section-title {
    font-size: 2em;
  }
  .page-index-industry-news-highlights__news-card {
    flex-direction: column;
  }
  .page-index-industry-news-highlights__news-image {
    width: 100%;
    height: 250px;
  }
  .page-index-industry-news-highlights__news-content {
    width: 100%;
    padding: 25px;
  }
  .page-index-industry-news-highlights__analysis-grid {
    grid-template-columns: 1fr;
  }
  .page-index-industry-news-highlights__cta-title {
    font-size: 2.2em;
  }
  .page-index-industry-news-highlights__newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .page-index-industry-news-highlights__newsletter-input {
    width: 80%;
    max-width: 350px;
  }
  .page-index-industry-news-highlights__cta-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-index-industry-news-highlights__hero-title {
    font-size: 2em;
  }
  .page-index-industry-news-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-industry-news-highlights__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-industry-news-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-industry-news-highlights__news-title {
    font-size: 1.5em;
  }
  .page-index-industry-news-highlights__analysis-title {
    font-size: 1.6em;
  }
  .page-index-industry-news-highlights__cta-title {
    font-size: 1.8em;
  }
  .page-index-industry-news-highlights__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-industry-news-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-industry-news-highlights__hero-description {
    font-size: 0.9em;
  }
  .page-index-industry-news-highlights__hero-cta {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-industry-news-highlights__section-title {
    font-size: 1.5em;
  }
  .page-index-industry-news-highlights__news-title {
    font-size: 1.3em;
  }
  .page-index-industry-news-highlights__news-summary {
    font-size: 0.9em;
  }
  .page-index-industry-news-highlights__read-more-btn {
    padding: 8px 15px;
    font-size: 0.85em;
  }
  .page-index-industry-news-highlights__analysis-title {
    font-size: 1.4em;
  }
  .page-index-industry-news-highlights__cta-title {
    font-size: 1.6em;
  }
  .page-index-industry-news-highlights__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-industry-news-highlights__newsletter-input {
    width: 90%;
  }
  .page-index-industry-news-highlights__newsletter-button {
    width: 90%;
  }
}