/* style/industry-news.css */
.page-industry-news__hero {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('[GALLERY:bg:abstract,geometric,pattern,blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-industry-news__hero > div {
  position: relative;
  z-index: 1;
}

.page-industry-news__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-industry-news__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

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

.page-industry-news__content-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-industry-news__section-heading {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-news__sub-heading {
  font-size: 1.8em;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFC107;
  padding-left: 15px;
}

.page-industry-news__content-section p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-industry-news__content-section p a {
  color: #007BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-industry-news__content-section p a:hover {
  text-decoration: underline;
}

.page-industry-news__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news__detail-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-industry-news__detail-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-industry-news__detail-item p {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-industry-news__btn--primary {
  background-color: #FFC107;
  color: #333333;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-industry-news__btn--primary:hover {
  background-color: #e0a800;
  color: #000000;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
  transform: translateY(-2px);
}

.page-industry-news__btn--secondary {
  background-color: #007BFF;
  color: #FFFFFF;
  border: 2px solid #007BFF;
}

.page-industry-news__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-industry-news__cta-block {
  background-color: #e9f5ff;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
}

.page-industry-news__cta-title {
  font-size: 2.2em;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-industry-news__cta-description {
  font-size: 1.2em;
  color: #444444;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news__cta-buttons .page-industry-news__btn {
  margin: 0 15px;
}

.page-industry-news__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFC107;
  color: #333333;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-industry-news__floating-ad:hover {
  transform: translateY(-5px);
  background-color: #e0a800;
}

.page-industry-news__floating-ad a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333333;
}

.page-industry-news__floating-ad p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1em;
  margin-right: 15px;
}

.page-industry-news__floating-ad-btn {
  background-color: #007BFF;
  color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-industry-news__floating-ad:hover .page-industry-news__floating-ad-btn {
  background-color: #0056b3;
}

.highlight-text {
  color: #FFC107;
}

.page-industry-news__hero .highlight-text {
  color: #FFC107;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news__title {
    font-size: 2.8em;
  }
  .page-industry-news__subtitle {
    font-size: 1.3em;
  }
  .page-industry-news__section-heading {
    font-size: 2em;
  }
  .page-industry-news__sub-heading {
    font-size: 1.6em;
  }
  .page-industry-news__content-section p {
    font-size: 1em;
  }
  .page-industry-news__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-industry-news__title {
    font-size: 2.2em;
  }
  .page-industry-news__subtitle {
    font-size: 1.1em;
  }
  .page-industry-news__section-heading {
    font-size: 1.8em;
  }
  .page-industry-news__sub-heading {
    font-size: 1.4em;
  }
  .page-industry-news__hero {
    padding: 80px 15px;
  }
  .page-industry-news__content-section {
    padding: 40px 0;
  }
  .page-industry-news__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-industry-news__cta-buttons .page-industry-news__btn {
    margin: 0;
  }
  .page-industry-news__floating-ad {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
  }
  .page-industry-news__floating-ad p {
    font-size: 0.9em;
    margin-right: 10px;
  }
  .page-industry-news__floating-ad-btn {
    padding: 6px 12px;
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .page-industry-news__title {
    font-size: 1.8em;
  }
  .page-industry-news__subtitle {
    font-size: 1em;
  }
  .page-industry-news__section-heading {
    font-size: 1.5em;
  }
  .page-industry-news__sub-heading {
    font-size: 1.2em;
  }
  .page-industry-news__cta-title {
    font-size: 1.5em;
  }
  .page-industry-news__cta-description {
    font-size: 1em;
  }
  .page-industry-news__floating-ad {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: calc(100% - 30px);
    bottom: 10px;
    right: 15px;
  }
  .page-industry-news__floating-ad a {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .page-industry-news__floating-ad p {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-industry-news__floating-ad-btn {
    align-self: flex-end;
  }
}