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

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

.page-industry-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #1A2E47, #3b5a7a);
  color: white;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-industry-news__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-industry-news__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E47;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-industry-news__hero-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 5;
}

.page-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-industry-news__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-industry-news__section:last-of-type {
  border-bottom: none;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #1A2E47;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-industry-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-industry-news__introduction p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

.page-industry-news__article {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-industry-news__article-title {
  font-size: 1.8em;
  color: #1A2E47;
  padding: 25px 30px 15px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}

.page-industry-news__article-content {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-industry-news__article-content p {
  text-align: justify;
  font-size: 1.05em;
}

.page-industry-news__article-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-industry-news__inline-link {
  color: #1A2E47;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-industry-news__inline-link:hover {
  color: #FFD700;
}

.page-industry-news__cta-block {
  background-color: #1A2E47;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.page-industry-news__cta-content {
  max-width: 900px;
}

.page-industry-news__cta-content .page-industry-news__section-title {
  color: #FFD700;
}

.page-industry-news__cta-content .page-industry-news__section-title::after {
  background-color: white;
}

.page-industry-news__cta-block p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-industry-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-news__cta-button--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-industry-news__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-industry-news__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-3px);
}

.page-industry-news__related-articles {
  background-color: #f0f4f8;
}

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

.page-industry-news__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-industry-news__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-industry-news__card-title a {
  color: #1A2E47;
  text-decoration: none;
  font-weight: bold;
}

.page-industry-news__card-title a:hover {
  color: #FFD700;
}

.page-industry-news__card-description {
  color: #555;
  margin-bottom: 25px;
  font-size: 0.95em;
}

.page-industry-news__card-button {
  display: inline-block;
  background-color: #1A2E47;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-industry-news__card-button:hover {
  background-color: #3b5a7a;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-industry-news__article-content {
    flex-direction: row;
    align-items: flex-start;
  }

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

  .page-industry-news__article-image {
    width: 40%;
    flex-shrink: 0;
    height: 250px;
    margin: 0 20px 0 0;
  }

  .page-industry-news__article-content:nth-child(odd) .page-industry-news__article-image {
    margin: 0 0 0 20px;
  }
}

@media (max-width: 767px) {
  .page-industry-news__title {
    font-size: 2.5em;
  }

  .page-industry-news__subtitle {
    font-size: 1.1em;
  }

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

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

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

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

  .page-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-industry-news__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-industry-news__article-card {
    padding: 25px;
  }
}