.page-news-industry-updates {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-news-industry-updates__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-industry-updates__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("[GALLERY:bg:abstract_pattern,geometric_shapes,blue_gold_gradient]") no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-news-industry-updates__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  margin: 0 10px;
}

.page-news-industry-updates__btn--primary {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

.page-news-industry-updates__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

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

.page-news-industry-updates__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-news-industry-updates__article {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-news-industry-updates__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-news-industry-updates__sub-title {
  font-size: 1.6em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news-industry-updates__article p {
  margin-bottom: 15px;
  color: #444;
}

.page-news-industry-updates__article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__article ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #444;
}

.page-news-industry-updates__article li {
  margin-bottom: 8px;
}

.page-news-industry-updates__cta-block {
  background-color: #007bff;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-news-industry-updates__cta-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #ffc107;
}

.page-news-industry-updates__cta-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-news-industry-updates__related-articles {
  background-color: #f0f2f5;
  padding: 60px 0;
}

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

.page-news-industry-updates__article-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-updates__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-news-industry-updates__card-title {
  font-size: 1.4em;
  padding: 15px;
  margin-bottom: 0;
}

.page-news-industry-updates__card-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-updates__card-title a:hover {
  color: #ffc107;
}

.page-news-industry-updates__card-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 15px 15px;
}

.page-news-industry-updates__card-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  padding: 0 15px 15px;
  transition: color 0.3s ease;
}

.page-news-industry-updates__card-link:hover {
  color: #0056b3;
}

.page-news-industry-updates .highlight {
  color: #007bff;
  font-weight: bold;
}

.page-news-industry-updates__cta-block .page-news-industry-updates__btn {
  margin-top: 15px;
}

@media (max-width: 992px) {
  .page-news-industry-updates__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-updates__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-industry-updates__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__sub-title {
    font-size: 1.4em;
  }
  .page-news-industry-updates__article {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-industry-updates__hero-subtitle {
    font-size: 1em;
  }
  .page-news-industry-updates__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news-industry-updates__section-title {
    font-size: 1.6em;
  }
  .page-news-industry-updates__sub-title {
    font-size: 1.2em;
  }
  .page-news-industry-updates__article {
    padding: 20px;
  }
  .page-news-industry-updates__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-updates__cta-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news-industry-updates__hero-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-industry-updates__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-news-industry-updates__section-title {
    font-size: 1.4em;
  }
  .page-news-industry-updates__sub-title {
    font-size: 1.1em;
  }
  .page-news-industry-updates__article {
    padding: 15px;
  }
  .page-news-industry-updates__cta-title {
    font-size: 1.5em;
  }
}