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

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

.page-industry-news__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  opacity: 0.1;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  color: #eee;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-industry-news__section {
  padding: 60px 0;
}

.page-industry-news__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

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

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

.page-industry-news__sub-section-title {
  font-size: 1.8em;
  color: #B39700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #8B0000;
  padding-left: 15px;
}

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

.page-industry-news__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-industry-news__article-card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin: 20px 20px 10px;
}

.page-industry-news__article-card-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-industry-news__article-excerpt {
  padding: 0 20px 20px;
  color: #555;
  flex-grow: 1;
}

.page-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  margin-top: 20px;
  align-self: flex-start;
}

.page-industry-news__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  border-color: #e6c200;
}

.page-industry-news__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-industry-news__btn--secondary:hover {
  background-color: #6a0000;
  color: #ffe033;
  border-color: #6a0000;
}

.page-industry-news__content-block {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #444;
}

.page-industry-news__content-block p {
  margin-bottom: 20px;
}

.page-industry-news__content-block a {
  color: #8B0000;
  text-decoration: underline;
}

.page-industry-news__content-block a:hover {
  color: #FFD700;
}

.page-industry-news__cta-section {
  background-color: #8B0000;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-industry-news__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

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

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

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

  .page-industry-news__article-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-industry-news__btn {
    width: 100%;
    box-sizing: border-box;
  }

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

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

  .page-industry-news__section {
    padding: 40px 0;
  }
}

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

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

  .page-industry-news__sub-section-title {
    font-size: 1.3em;
  }

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

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

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