/* style/industry-news.css */
.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-industry-news__hero {
  background: linear-gradient(135deg, #1A237E, #5f65a5);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.page-industry-news__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.page-industry-news__hero-content {
  max-width: 600px;
  margin-right: 40px;
  z-index: 1;
}

.page-industry-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-industry-news__hero-cta {
  display: inline-block;
  background-color: #FFC107; /* Accent color for CTA */
  color: #1A237E; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__hero-cta:hover {
  background-color: #e5ac00;
  transform: translateY(-3px);
}

.page-industry-news__hero-image-wrapper {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  margin-left: 40px;
}

.page-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-industry-news__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-industry-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107; /* Accent color for underline */
  border-radius: 2px;
}

.page-industry-news__section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #555;
}

.page-industry-news__latest-news {
  background-color: #fefefe;
}

.page-industry-news__article-card {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-industry-news__article-card:hover {
  transform: translateY(-5px);
}

.page-industry-news__article-card:nth-child(odd) {
  flex-direction: row-reverse;
}

.page-industry-news__article-image {
  width: 35%;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-industry-news__article-content {
  padding: 30px;
  flex-grow: 1;
}

.page-industry-news__article-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-industry-news__article-title a {
  color: #1A237E; /* Main color for article titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__article-title a:hover {
  color: #FFC107; /* Accent color on hover */
}

.page-industry-news__article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-industry-news__article-excerpt {
  margin-bottom: 20px;
  color: #444;
}

.page-industry-news__read-more {
  display: inline-block;
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.page-industry-news__read-more:hover {
  color: #FFC107;
  border-color: #1A237E;
}

.page-industry-news__xocdia88-focus {
  background-color: #fefefe;
}

.page-industry-news__content-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.page-industry-news__content-block:last-of-type {
  margin-bottom: 0;
}

.page-industry-news__content-image {
  width: 40%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* For mobile */
}

.page-industry-news__content-image--left {
  margin-right: 30px;
}

.page-industry-news__content-image--right {
  margin-left: 30px;
  order: 1; /* For desktop, image on right */
}

.page-industry-news__content-block .page-industry-news__content-block-title {
  width: 100%;
  font-size: 2em;
  color: #1A237E;
  margin-bottom: 20px;
}

.page-industry-news__content-block p,
.page-industry-news__content-block ul {
  flex-grow: 1;
  width: calc(60% - 30px);
  color: #333;
  font-size: 1.05em;
}

.page-industry-news__content-block ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-industry-news__content-block li {
  margin-bottom: 8px;
}

.page-industry-news__content-block p a {
  color: #1A237E;
  font-weight: bold;
  text-decoration: underline;
}

.page-industry-news__promotion-block {
  background-color: #1A237E; /* Main color for promotion block */
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-industry-news__promotion-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #FFC107; /* Accent color for promotion title */
}

.page-industry-news__promotion-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news__btn--primary {
  background-color: #FFC107;
  color: #1A237E;
}

.page-industry-news__btn--primary:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__btn--secondary {
  background-color: #5f65a5; /* Lighter shade of main color */
  color: #fff;
  border: 1px solid #5f65a5;
}

.page-industry-news__btn--secondary:hover {
  background-color: #767bb2;
  border-color: #767bb2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__btn--download {
  background-color: #FFC107; /* Accent color */
  color: #1A237E;
}

.page-industry-news__btn--download:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__future-outlook {
  background-color: #fefefe;
}

.page-industry-news__contact-cta {
  background-color: #FFC107; /* Accent color for CTA block */
  padding: 50px 0;
  text-align: center;
  color: #1A237E; /* Dark text for contrast */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.page-industry-news__contact-cta-content {
  max-width: 800px;
}

.page-industry-news__contact-cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #1A237E;
}

.page-industry-news__contact-cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333;
}

.page-industry-news__btn--contact {
  background-color: #1A237E;
  color: #fff;
}

.page-industry-news__btn--contact:hover {
  background-color: #0d124d;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .page-industry-news__hero-image-wrapper {
    margin-left: 0;
    width: 80%;
    height: 250px;
  }

  .page-industry-news__hero-title {
    font-size: 2.8em;
  }

  .page-industry-news__article-card {
    flex-direction: column !important;
  }

  .page-industry-news__article-image {
    width: 100%;
    height: 200px;
  }

  .page-industry-news__content-block {
    flex-direction: column;
  }

  .page-industry-news__content-image,
  .page-industry-news__content-image--left,
  .page-industry-news__content-image--right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    order: unset;
  }

  .page-industry-news__content-block p,
  .page-industry-news__content-block ul {
    width: 100%;
  }

  .page-industry-news__btn {
    margin: 10px 5px;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 20px;
  }

  .page-industry-news__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news__hero-description {
    font-size: 1em;
  }

  .page-industry-news__section-title {
    font-size: 2em;
  }

  .page-industry-news__article-content {
    padding: 20px;
  }

  .page-industry-news__article-title {
    font-size: 1.5em;
  }

  .page-industry-news__content-block .page-industry-news__content-block-title {
    font-size: 1.8em;
  }

  .page-industry-news__promotion-title {
    font-size: 1.8em;
  }

  .page-industry-news__promotion-text {
    font-size: 1em;
  }

  .page-industry-news__contact-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.8em;
  }

  .page-industry-news__section-title {
    font-size: 1.6em;
  }

  .page-industry-news__article-title {
    font-size: 1.2em;
  }

  .page-industry-news__hero-cta,
  .page-industry-news__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-industry-news__promotion-block {
    padding: 30px 20px;
  }

  .page-industry-news__contact-cta-title {
    font-size: 1.6em;
  }
}