/* style/latest-news-industry-updates.css */

:root {
  --page-latest-news-industry-updates-primary-color: #007bff;
  --page-latest-news-industry-updates-secondary-color: #ffc107;
  --page-latest-news-industry-updates-dark-text: #212529;
  --page-latest-news-industry-updates-light-text: #f8f9fa;
  --page-latest-news-industry-updates-gray-bg: #f8f9fa;
  --page-latest-news-industry-updates-white: #ffffff;
}

.page-latest-news-industry-updates {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-latest-news-industry-updates-dark-text);
  background-color: var(--page-latest-news-industry-updates-white);
}

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

.page-latest-news-industry-updates__hero {
  background: linear-gradient(135deg, var(--page-latest-news-industry-updates-primary-color), #0056b3);
  color: var(--page-latest-news-industry-updates-light-text);
  padding: 100px 0;
  text-align: center;
}

.page-latest-news-industry-updates__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-latest-news-industry-updates-light-text);
  line-height: 1.2;
}

.page-latest-news-industry-updates__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news-industry-updates__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;
  white-space: nowrap;
}

.page-latest-news-industry-updates__btn--primary {
  background-color: var(--page-latest-news-industry-updates-secondary-color);
  color: var(--page-latest-news-industry-updates-dark-text);
  border: 2px solid var(--page-latest-news-industry-updates-secondary-color);
}

.page-latest-news-industry-updates__btn--primary:hover {
  background-color: #e6ac00; /* Darker shade of secondary */
  border-color: #e6ac00;
}

.page-latest-news-industry-updates__btn--secondary {
  background-color: var(--page-latest-news-industry-updates-primary-color);
  color: var(--page-latest-news-industry-updates-light-text);
  border: 2px solid var(--page-latest-news-industry-updates-primary-color);
}

.page-latest-news-industry-updates__btn--secondary:hover {
  background-color: #0056b3; /* Darker shade of primary */
  border-color: #0056b3;
}

.page-latest-news-industry-updates__btn--outline {
  background-color: transparent;
  color: var(--page-latest-news-industry-updates-light-text);
  border: 2px solid var(--page-latest-news-industry-updates-light-text);
  margin-left: 15px;
}

.page-latest-news-industry-updates__btn--outline:hover {
  background-color: var(--page-latest-news-industry-updates-light-text);
  color: var(--page-latest-news-industry-updates-primary-color);
}

.page-latest-news-industry-updates__section {
  padding: 60px 0;
}

.page-latest-news-industry-updates__section:nth-of-type(even) {
  background-color: var(--page-latest-news-industry-updates-gray-bg);
}

.page-latest-news-industry-updates__section-title {
  font-size: 2.2em;
  color: var(--page-latest-news-industry-updates-primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-latest-news-industry-updates__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--page-latest-news-industry-updates-secondary-color);
  border-radius: 2px;
}

.page-latest-news-industry-updates__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--page-latest-news-industry-updates-dark-text);
}

.page-latest-news-industry-updates__news-article {
  background-color: var(--page-latest-news-industry-updates-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-latest-news-industry-updates__article-title {
  font-size: 1.8em;
  color: var(--page-latest-news-industry-updates-primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-latest-news-industry-updates__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-latest-news-industry-updates__news-article p {
  font-size: 1em;
  margin-bottom: 15px;
  color: var(--page-latest-news-industry-updates-dark-text);
  max-width: 800px;
}

.page-latest-news-industry-updates__cta-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.page-latest-news-industry-updates__cta-final {
  background: linear-gradient(135deg, #0056b3, var(--page-latest-news-industry-updates-primary-color));
  color: var(--page-latest-news-industry-updates-light-text);
  padding: 80px 0;
  text-align: center;
}

.page-latest-news-industry-updates__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--page-latest-news-industry-updates-light-text);
}

.page-latest-news-industry-updates__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-latest-news-industry-updates__news-article {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 30px;
  }

  .page-latest-news-industry-updates__news-article:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-latest-news-industry-updates__article-image {
    flex: 0 0 350px;
    max-width: 350px;
    margin-bottom: 0;
  }

  .page-latest-news-industry-updates__news-article p {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .page-latest-news-industry-updates__hero-title {
    font-size: 2em;
  }

  .page-latest-news-industry-updates__hero-description,
  .page-latest-news-industry-updates__section-intro,
  .page-latest-news-industry-updates__cta-description {
    font-size: 1em;
  }

  .page-latest-news-industry-updates__section-title {
    font-size: 1.8em;
  }

  .page-latest-news-industry-updates__article-title {
    font-size: 1.4em;
  }

  .page-latest-news-industry-updates__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-latest-news-industry-updates__btn--outline {
    margin-left: 0;
  }

  .page-latest-news-industry-updates__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-latest-news-industry-updates__hero-title {
    font-size: 1.7em;
  }

  .page-latest-news-industry-updates__section-title {
    font-size: 1.5em;
  }

  .page-latest-news-industry-updates__article-title {
    font-size: 1.2em;
  }

  .page-latest-news-industry-updates__btn {
    width: 100%;
    text-align: center;
  }
}