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

.page-industry-news-tech-innovations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for text on light background */
  background-color: #f8f8f8;
}

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

.page-industry-news-tech-innovations__hero-section {
  background: linear-gradient(135deg, #003366, #004d99); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-industry-news-tech-innovations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for main title */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-tech-innovations__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.page-industry-news-tech-innovations__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold for CTA button */
  color: #003366; /* Deep blue for text on gold */
  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;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-innovations__cta-button:hover {
  background-color: #e6b800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-industry-news-tech-innovations__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-industry-news-tech-innovations__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-industry-news-tech-innovations__cta-button--secondary:hover {
  background-color: #004d99;
  color: #FFCC00;
  transform: translateY(-3px);
}

.page-industry-news-tech-innovations__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-industry-news-tech-innovations__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 10px;
  text-align: center;
}

.page-industry-news-tech-innovations__sub-section-title {
  font-size: 1.8em;
  color: #004d99; /* Slightly lighter blue for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.page-industry-news-tech-innovations__cta-wrapper {
  text-align: center;
  margin: 50px 0;
  padding: 30px;
  background-color: #f0f8ff; /* Light blue background for CTA wrapper */
  border-radius: 10px;
  border: 1px solid #e0f0ff;
}

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

.page-industry-news-tech-innovations__conclusion-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #003366; /* Deep blue background for final CTA */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-news-tech-innovations__conclusion-cta p {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-industry-news-tech-innovations__conclusion-cta .page-industry-news-tech-innovations__cta-button {
  margin: 0 15px;
}

.page-industry-news-tech-innovations__related-content {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

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

.page-industry-news-tech-innovations__related-article {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-industry-news-tech-innovations__related-article:hover {
  transform: translateY(-5px);
}

.page-industry-news-tech-innovations__related-article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-industry-news-tech-innovations__related-article-title {
  font-size: 1.4em;
  color: #003366;
  padding: 15px 20px 10px;
}

.page-industry-news-tech-innovations__related-article-excerpt {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 15px;
}

.page-industry-news-tech-innovations__read-more {
  display: inline-block;
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px 20px;
  transition: color 0.3s ease;
}

.page-industry-news-tech-innovations__read-more:hover {
  color: #e6b800;
}

/* Floating Ads/Promotions */
.page-industry-news-tech-innovations__floating-ads {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-industry-news-tech-innovations__floating-item {
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #FFCC00;
}

.page-industry-news-tech-innovations__floating-text {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFCC00; /* Gold text for emphasis */
}

.page-industry-news-tech-innovations__floating-button {
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Deep blue text */
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news-tech-innovations__floating-button:hover {
  background-color: #e6b800; /* Darker gold */
  transform: translateY(-2px);
}

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

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

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

  .page-industry-news-tech-innovations__sub-section-title {
    font-size: 1.5em;
  }

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

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

  .page-industry-news-tech-innovations__floating-ads {
    right: 10px;
    bottom: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100% - 20px);
  }

  .page-industry-news-tech-innovations__floating-item {
    padding: 10px 15px;
    flex-direction: column;
    gap: 5px;
  }

  .page-industry-news-tech-innovations__floating-text {
    font-size: 0.9em;
    text-align: center;
  }

  .page-industry-news-tech-innovations__floating-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

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

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

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

  .page-industry-news-tech-innovations__floating-ads {
    position: static;
    width: 100%;
    margin-top: 30px;
    padding: 0 10px;
    flex-direction: column;
  }
  .page-industry-news-tech-innovations__floating-item {
    width: 100%;
    box-sizing: border-box;
  }
}