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

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

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

.page-industry-news__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.05"/></svg>') repeat;
  opacity: 0.1;
}

.page-industry-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Golden yellow for highlight */
}

.page-industry-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-industry-news__hero-image {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.3;
  z-index: 0;
  max-width: 400px;
  pointer-events: none;
}

.page-industry-news__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.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: #003366; /* Deep blue for titles */
  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: #FFCC00; /* Golden yellow underline */
  border-radius: 2px;
}

.page-industry-news__section-title--center {
  text-align: center;
}

.page-industry-news__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-industry-news__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-industry-news__text-content {
  flex: 1;
  font-size: 1.1em;
  color: #444;
}

.page-industry-news__text-content h3 {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-news__text-content p {
  margin-bottom: 15px;
}

.page-industry-news__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-industry-news__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-industry-news__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Golden yellow for CTA */
  color: #003366; /* Deep blue text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-industry-news__cta-button:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  transform: translateY(-2px);
}

.page-industry-news__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

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

.page-industry-news__cta-button--secondary:hover {
  background-color: #002244;
  color: #FFCC00;
  transform: translateY(-2px);
}

.page-industry-news__text-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-industry-news__text-link:hover {
  color: #FFCC00;
}

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

.page-industry-news__offer-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-industry-news__offer-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 4px;
}

.page-industry-news__offer-card h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-industry-news__offer-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-industry-news__section-text--center {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555;
}

.page-industry-news__detailed-articles {
  background-color: #f0f4f7;
}

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

.page-industry-news__article-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-industry-news__article-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

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

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

.page-industry-news__article-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-industry-news__read-more-button {
  display: inline-block;
  background-color: #003366; /* Deep blue for read more */
  color: #FFCC00; /* Golden yellow text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__read-more-button:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-industry-news__cta-bottom {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFCC00, #e6b800);
  color: #003366;
  text-align: center;
}

.page-industry-news__cta-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

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

.page-industry-news__cta-card-description {
  font-size: 1.3em;
  color: #444;
  margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-industry-news__hero-description {
    font-size: 1.1em;
  }
  .page-industry-news__section-title {
    font-size: 2em;
  }
  .page-industry-news__content-wrapper {
    flex-direction: column;
  }
  .page-industry-news__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-industry-news__image-wrapper {
    margin-top: 30px;
  }
  .page-industry-news__cta-card-title {
    font-size: 2.2em;
  }
  .page-industry-news__cta-card-description {
    font-size: 1.1em;
  }
  .page-industry-news__cta-card-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-industry-news__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 0;
  }
  .page-industry-news__hero-title {
    font-size: 2em;
  }
  .page-industry-news__section {
    padding: 40px 0;
  }
  .page-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-industry-news__section-subtitle {
    font-size: 1em;
  }
  .page-industry-news__offer-cards {
    grid-template-columns: 1fr;
  }
  .page-industry-news__article-list {
    grid-template-columns: 1fr;
  }
  .page-industry-news__cta-bottom {
    padding: 50px 0;
  }
  .page-industry-news__cta-card {
    padding: 30px;
  }
  .page-industry-news__cta-card-title {
    font-size: 1.8em;
  }
  .page-industry-news__cta-card-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news__hero-description {
    font-size: 0.9em;
  }
  .page-industry-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-industry-news__text-content h3 {
    font-size: 1.5em;
  }
  .page-industry-news__cta-card-title {
    font-size: 1.5em;
  }
  .page-industry-news__cta-card-buttons {
    gap: 10px;
  }
  .page-industry-news__cta-button {
    width: 90%;
  }
}