.page-industry-news-trends {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

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

.page-industry-news-trends__hero {
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  padding: 100px 0;
  text-align: center;
  color: #1A1A1A;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,gold_dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-industry-news-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A1A; /* Darker text for contrast on golden background */
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-industry-news-trends__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333; /* Slightly lighter dark for readability */
  position: relative;
  z-index: 1;
}

.page-industry-news-trends__hero-cta {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
  border: 2px solid #FFD700;
}

.page-industry-news-trends__hero-cta:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.page-industry-news-trends__section {
  padding: 80px 0;
}

.page-industry-news-trends__section:nth-of-type(odd) {
  background-color: #1A1A1A;
}

.page-industry-news-trends__section:nth-of-type(even) {
  background-color: #222222;
}

.page-industry-news-trends__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-industry-news-trends__section-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
}

.page-industry-news-trends__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-industry-news-trends__content-text {
  flex: 2;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-industry-news-trends__content-text p {
  margin-bottom: 15px;
}

.page-industry-news-trends__content-image {
  flex: 1;
  text-align: center;
}

.page-industry-news-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-industry-news-trends__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-industry-news-trends__news-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-industry-news-trends__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-industry-news-trends__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-industry-news-trends__news-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-industry-news-trends__news-card p {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-industry-news-trends__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-industry-news-trends__card-button:hover {
  background-color: #e6c200;
}

.page-industry-news-trends__deep-dive p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-industry-news-trends__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-industry-news-trends__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-industry-news-trends__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-industry-news-trends__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-trends__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-trends__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-trends__testimonials {
  background-color: #1A1A1A;
  padding: 80px 0;
}

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

.page-industry-news-trends__testimonial-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-industry-news-trends__testimonial-text {
  font-style: italic;
  color: #C0C0C0;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-industry-news-trends__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news-trends__hero-title {
    font-size: 2.8em;
  }

  .page-industry-news-trends__hero-description {
    font-size: 1.1em;
  }

  .page-industry-news-trends__section-title {
    font-size: 2em;
  }

  .page-industry-news-trends__content-grid {
    flex-direction: column;
  }

  .page-industry-news-trends__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-industry-news-trends__btn {
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .page-industry-news-trends__hero {
    padding: 80px 0;
  }

  .page-industry-news-trends__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news-trends__hero-description {
    font-size: 1em;
  }

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

  .page-industry-news-trends__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-trends__news-card h3 {
    font-size: 1.5em;
  }

  .page-industry-news-trends__cta-group {
    flex-direction: column;
  }

  .page-industry-news-trends__btn {
    width: calc(100% - 40px);
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-trends__hero-title {
    font-size: 1.8em;
  }

  .page-industry-news-trends__hero-description {
    font-size: 0.9em;
  }

  .page-industry-news-trends__section-title {
    font-size: 1.5em;
  }

  .page-industry-news-trends__news-grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-trends__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
}