/* style/industry-news-technology-innovations.css */

/* Variables */
:root {
  --page-industry-news-technology-innovations-primary-color: #0A192F;
  --page-industry-news-technology-innovations-accent-color: #FFD700;
  --page-industry-news-technology-innovations-text-light: #F0F0F0;
  --page-industry-news-technology-innovations-text-dark: #1A1A1A;
  --page-industry-news-technology-innovations-background-light: #FFFFFF;
  --page-industry-news-technology-innovations-background-dark: #0A192F;
  --page-industry-news-technology-innovations-secondary-bg: #1A2A43;
  --page-industry-news-technology-innovations-border-color: #FFD700;
}

.page-industry-news-technology-innovations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-industry-news-technology-innovations-text-light);
  background-color: var(--page-industry-news-technology-innovations-background-dark);
}

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

.page-industry-news-technology-innovations__hero {
  background: linear-gradient(135deg, var(--page-industry-news-technology-innovations-primary-color) 0%, #1A2A43 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: var(--page-industry-news-technology-innovations-text-light);
  position: relative;
  overflow: hidden;
}

.page-industry-news-technology-innovations__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: page-industry-news-technology-innovations-pulse 4s infinite alternate;
}

.page-industry-news-technology-innovations__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: page-industry-news-technology-innovations-pulse 5s infinite alternate reverse;
}

@keyframes page-industry-news-technology-innovations-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-industry-news-technology-innovations__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-industry-news-technology-innovations-accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-industry-news-technology-innovations__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-industry-news-technology-innovations-text-light);
}

.page-industry-news-technology-innovations__cta-button {
  display: inline-block;
  background-color: var(--page-industry-news-technology-innovations-accent-color);
  color: var(--page-industry-news-technology-innovations-primary-color);
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-industry-news-technology-innovations__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
}

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

.page-industry-news-technology-innovations__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-technology-innovations__section:last-of-type {
  border-bottom: none;
}

.page-industry-news-technology-innovations__section-title {
  font-size: 2.5em;
  color: var(--page-industry-news-technology-innovations-accent-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-industry-news-technology-innovations__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-industry-news-technology-innovations-accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-industry-news-technology-innovations__sub-title {
  font-size: 1.8em;
  color: var(--page-industry-news-technology-innovations-text-light);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--page-industry-news-technology-innovations-accent-color);
  padding-left: 15px;
}

.page-industry-news-technology-innovations__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-industry-news-technology-innovations-text-light);
}

.page-industry-news-technology-innovations__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-industry-news-technology-innovations__list li {
  background-color: var(--page-industry-news-technology-innovations-secondary-bg);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid var(--page-industry-news-technology-innovations-accent-color);
  border-radius: 5px;
  font-size: 1.05em;
  color: var(--page-industry-news-technology-innovations-text-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-industry-news-technology-innovations__list li strong {
  color: var(--page-industry-news-technology-innovations-accent-color);
}

.page-industry-news-technology-innovations__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease-in-out;
}

.page-industry-news-technology-innovations__image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-industry-news-technology-innovations__title {
    font-size: 2.5em;
  }

  .page-industry-news-technology-innovations__subtitle {
    font-size: 1.1em;
  }

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

  .page-industry-news-technology-innovations__section p,
  .page-industry-news-technology-innovations__list li {
    font-size: 1em;
  }

  .page-industry-news-technology-innovations__hero {
    padding: 80px 0 40px;
  }

  .page-industry-news-technology-innovations__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-industry-news-technology-innovations__title {
    font-size: 2em;
  }

  .page-industry-news-technology-innovations__subtitle {
    font-size: 0.9em;
  }

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

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

  .page-industry-news-technology-innovations__section p,
  .page-industry-news-technology-innovations__list li {
    font-size: 0.95em;
  }
}