/* style/news-guides-industry-updates.css */

:root {
  --page-news-guides-industry-updates-primary-color: #FFD700; /* Gold */
  --page-news-guides-industry-updates-secondary-color: #1A1A1A; /* Dark Grey/Black */
  --page-news-guides-industry-updates-text-on-primary: #1A1A1A; /* Dark text on gold */
  --page-news-guides-industry-updates-text-on-secondary: #FFD700; /* Gold text on dark */
  --page-news-guides-industry-updates-light-text: #E0E0E0; /* Light grey for subtle text */
  --page-news-guides-industry-updates-dark-text: #333333; /* Dark text for readability */
  --page-news-guides-industry-updates-background-light: #F5F5F5; /* Very light background */
  --page-news-guides-industry-updates-background-dark: #222222; /* Dark background */
  --page-news-guides-industry-updates-accent-color: #0028ff; /* Blue accent for emphasis */
}

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

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

/* Hero Section */
.page-news-guides-industry-updates__hero-section {
  background: linear-gradient(135deg, var(--page-news-guides-industry-updates-primary-color) 0%, var(--page-news-guides-industry-updates-secondary-color) 100%);
  color: var(--page-news-guides-industry-updates-text-on-secondary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-guides-industry-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-news-guides-industry-updates-text-on-secondary); /* Gold on dark background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-guides-industry-updates__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--page-news-guides-industry-updates-light-text);
}

.page-news-guides-industry-updates__cta-button {
  display: inline-block;
  background-color: var(--page-news-guides-industry-updates-text-on-primary); /* Dark button */
  color: var(--page-news-guides-industry-updates-primary-color); /* Gold text */
  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;
  border: 2px solid var(--page-news-guides-industry-updates-primary-color);
}

.page-news-guides-industry-updates__cta-button:hover {
  background-color: var(--page-news-guides-industry-updates-primary-color);
  color: var(--page-news-guides-industry-updates-secondary-color);
  border-color: var(--page-news-guides-industry-updates-secondary-color);
}

/* Content Section */
.page-news-guides-industry-updates__content-section {
  padding: 60px 0;
  background-color: var(--page-news-guides-industry-updates-background-light);
}

.page-news-guides-industry-updates__section-title {
  font-size: 2.5em;
  color: var(--page-news-guides-industry-updates-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-news-guides-industry-updates__content-area p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--page-news-guides-industry-updates-dark-text);
}

/* Article Grid */
.page-news-guides-industry-updates__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news-guides-industry-updates__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news-guides-industry-updates__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news-guides-industry-updates__article-title {
  font-size: 1.5em;
  color: var(--page-news-guides-industry-updates-secondary-color);
  padding: 20px 20px 10px;
}

.page-news-guides-industry-updates__article-text {
  padding: 0 20px 20px;
  color: var(--page-news-guides-industry-updates-dark-text);
}

/* Tech List */
.page-news-guides-industry-updates__tech-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-news-guides-industry-updates__tech-list li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-news-guides-industry-updates__tech-list li:hover {
  transform: translateY(-5px);
}

.page-news-guides-industry-updates__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--page-news-guides-industry-updates-primary-color);
}

.page-news-guides-industry-updates__tech-list h4 {
  font-size: 1.3em;
  color: var(--page-news-guides-industry-updates-secondary-color);
  margin-bottom: 10px;
}

.page-news-guides-industry-updates__tech-list p {
  font-size: 0.95em;
  color: var(--page-news-guides-industry-updates-dark-text);
}

/* Event Highlights */
.page-news-guides-industry-updates__event-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news-guides-industry-updates__event-card {
  background-color: var(--page-news-guides-industry-updates-background-dark);
  color: var(--page-news-guides-industry-updates-light-text);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-news-guides-industry-updates__event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-news-guides-industry-updates__event-title {
  font-size: 1.6em;
  color: var(--page-news-guides-industry-updates-primary-color);
  padding: 20px 20px 10px;
}

.page-news-guides-industry-updates__event-description {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: var(--page-news-guides-industry-updates-light-text);
}

/* CTA Block */
.page-news-guides-industry-updates__cta-block {
  background-color: var(--page-news-guides-industry-updates-secondary-color);
  color: var(--page-news-guides-industry-updates-light-text);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-news-guides-industry-updates__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-news-guides-industry-updates__cta-title {
  font-size: 2.8em;
  color: var(--page-news-guides-industry-updates-primary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-news-guides-industry-updates__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--page-news-guides-industry-updates-light-text);
}

.page-news-guides-industry-updates__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news-guides-industry-updates__main-cta-button,
.page-news-guides-industry-updates__secondary-cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.page-news-guides-industry-updates__main-cta-button {
  background-color: var(--page-news-guides-industry-updates-primary-color);
  color: var(--page-news-guides-industry-updates-secondary-color);
  border: 2px solid var(--page-news-guides-industry-updates-primary-color);
}

.page-news-guides-industry-updates__main-cta-button:hover {
  background-color: transparent;
  color: var(--page-news-guides-industry-updates-primary-color);
  border-color: var(--page-news-guides-industry-updates-primary-color);
}

.page-news-guides-industry-updates__secondary-cta-button {
  background-color: transparent;
  color: var(--page-news-guides-industry-updates-primary-color);
  border: 2px solid var(--page-news-guides-industry-updates-primary-color);
}

.page-news-guides-industry-updates__secondary-cta-button:hover {
  background-color: var(--page-news-guides-industry-updates-primary-color);
  color: var(--page-news-guides-industry-updates-secondary-color);
}

/* FAQ Accordion */
.page-news-guides-industry-updates__faq-accordion {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news-guides-industry-updates__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-guides-industry-updates__faq-question {
  font-size: 1.2em;
  color: var(--page-news-guides-industry-updates-secondary-color);
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.page-news-guides-industry-updates__faq-question:hover {
  background-color: #f0f0f0;
}

.page-news-guides-industry-updates__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--page-news-guides-industry-updates-primary-color);
  transition: transform 0.3s ease;
}

.page-news-guides-industry-updates__faq-item.active .page-news-guides-industry-updates__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-news-guides-industry-updates__faq-answer {
  padding: 0 20px 20px;
  color: var(--page-news-guides-industry-updates-dark-text);
  display: none;
  font-size: 1em;
}

.page-news-guides-industry-updates__faq-item.active .page-news-guides-industry-updates__faq-answer {
  display: block;
}

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

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

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

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

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

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

  .page-news-guides-industry-updates__article-grid,
  .page-news-guides-industry-updates__tech-list,
  .page-news-guides-industry-updates__event-highlights {
    grid-template-columns: 1fr;
  }

  .page-news-guides-industry-updates__cta-block {
    padding: 40px 20px;
  }

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

  .page-news-guides-industry-updates__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-guides-industry-updates__main-cta-button,
  .page-news-guides-industry-updates__secondary-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-news-guides-industry-updates__hero-section {
    padding: 60px 0;
  }

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

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

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

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

  .page-news-guides-industry-updates__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-news-guides-industry-updates__faq-question::after {
    right: 15px;
  }

  .page-news-guides-industry-updates__faq-answer {
    padding: 0 15px 15px;
  }
}