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

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

.page-industry-news-trends-tech-innovations__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  padding: 100px 0;
  text-align: center;
  color: #1A1A1A; /* Dark text on gradient background */
}

.page-industry-news-trends-tech-innovations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A1A;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trends-tech-innovations__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-industry-news-trends-tech-innovations__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
  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-industry-news-trends-tech-innovations__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-industry-news-trends-tech-innovations__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-industry-news-trends-tech-innovations__cta-button--secondary {
  background-color: #333; /* Darker secondary button */
  color: #FFD700; /* Gold text on dark */
  border: 1px solid #FFD700;
}

.page-industry-news-trends-tech-innovations__cta-button--secondary:hover {
  background-color: #555;
  color: #FFD700;
}

.page-industry-news-trends-tech-innovations__content-section {
  padding: 60px 0;
}

.page-industry-news-trends-tech-innovations__article {
  background-color: #2A2A2A; /* Slightly lighter dark background for content */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-trends-tech-innovations__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-industry-news-trends-tech-innovations__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-news-trends-tech-innovations__article p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-industry-news-trends-tech-innovations__article ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-industry-news-trends-tech-innovations__article li {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

.page-industry-news-trends-tech-innovations__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trends-tech-innovations__cta-block {
  background-color: #1A1A1A; /* Dark background for CTA block */
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  border: 2px solid #FFD700;
}

.page-industry-news-trends-tech-innovations__cta-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-industry-news-trends-tech-innovations__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-industry-news-trends-tech-innovations__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-news-trends-tech-innovations .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-news-trends-tech-innovations__hero-title {
    font-size: 2.5em;
  }

  .page-industry-news-trends-tech-innovations__hero-subtitle {
    font-size: 1.2em;
  }

  .page-industry-news-trends-tech-innovations__section-title {
    font-size: 2em;
  }

  .page-industry-news-trends-tech-innovations__subsection-title {
    font-size: 1.5em;
  }

  .page-industry-news-trends-tech-innovations__article {
    padding: 20px;
  }

  .page-industry-news-trends-tech-innovations__cta-block {
    padding: 30px 20px;
  }

  .page-industry-news-trends-tech-innovations__cta-title {
    font-size: 1.8em;
  }

  .page-industry-news-trends-tech-innovations__button-group {
    flex-direction: column;
  }
  
  .page-industry-news-trends-tech-innovations__cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-industry-news-trends-tech-innovations__hero-title {
    font-size: 2em;
  }

  .page-industry-news-trends-tech-innovations__hero-subtitle {
    font-size: 1em;
  }

  .page-industry-news-trends-tech-innovations__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-trends-tech-innovations__subsection-title {
    font-size: 1.3em;
  }

  .page-industry-news-trends-tech-innovations__article p,
  .page-industry-trends-tech-innovations__article li {
    font-size: 1em;
  }
}