/* style/industry-news.css */

/* Biến CSS */
:root {
  --page-industry-news-primary-color: #0A2239;
  --page-industry-news-secondary-color: #FFD700;
  --page-industry-news-accent-color: #DC143C;
  --page-industry-news-text-light: #F8F8F8;
  --page-industry-news-text-dark: #333333;
  --page-industry-news-background-dark: #0A2239;
  --page-industry-news-background-light: #1A3A53;
}

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

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

.page-industry-news__hero {
  background: linear-gradient(135deg, var(--page-industry-news-primary-color) 0%, #1A3A53 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-industry-news__hero-title {
  font-size: 3.2em;
  color: var(--page-industry-news-secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-industry-news__hero-description {
  font-size: 1.3em;
  color: var(--page-industry-news-text-light);
  margin-bottom: 30px;
}

.page-industry-news__hero-cta {
  display: inline-block;
  background-color: var(--page-industry-news-accent-color);
  color: var(--page-industry-news-text-light);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-cta:hover {
  background-color: #B20D2F;
  transform: translateY(-2px);
}

.page-industry-news__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

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

.page-industry-news__section {
  padding: 60px 0;
  background-color: var(--page-industry-news-background-dark);
}

.page-industry-news__section:nth-of-type(even) {
  background-color: var(--page-industry-news-background-light);
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: var(--page-industry-news-secondary-color);
  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: var(--page-industry-news-accent-color);
  border-radius: 2px;
}

.page-industry-news__sub-title {
  font-size: 1.8em;
  color: var(--page-industry-news-secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-industry-news__text {
  font-size: 1.1em;
  color: var(--page-industry-news-text-light);
  margin-bottom: 20px;
}

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

.page-industry-news__card {
  background-color: #1A3A53;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-industry-news__card-title {
  font-size: 1.5em;
  color: var(--page-industry-news-secondary-color);
  padding: 20px 20px 10px;
}

.page-industry-news__card-description {
  font-size: 1em;
  color: var(--page-industry-news-text-light);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-industry-news__card-button {
  display: inline-block;
  background-color: var(--page-industry-news-accent-color);
  color: var(--page-industry-news-text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

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

.page-industry-news__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news__content-with-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-industry-news__text-content {
  flex: 2;
}

.page-industry-news__image-wrapper {
  flex: 1;
  max-width: 500px;
}

.page-industry-news__image-responsive {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-industry-news__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__button--primary {
  background-color: var(--page-industry-news-secondary-color);
  color: var(--page-industry-news-primary-color);
}

.page-industry-news__button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-industry-news__button--secondary {
  background-color: var(--page-industry-news-accent-color);
  color: var(--page-industry-news-text-light);
}

.page-industry-news__button--secondary:hover {
  background-color: #B20D2F;
  transform: translateY(-2px);
}

.page-industry-news__detail-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-industry-news__detail-item {
  background-color: #1A3A53;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

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

.page-industry-news__detail-title a {
  color: var(--page-industry-news-secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__detail-title a:hover {
  color: var(--page-industry-news-accent-color);
}

.page-industry-news__detail-description {
  font-size: 1em;
  color: var(--page-industry-news-text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-industry-news__detail-button {
  display: inline-block;
  background-color: var(--page-industry-news-accent-color);
  color: var(--page-industry-news-text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-industry-news__detail-button:hover {
  background-color: #B20D2F;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.8em;
  }

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

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

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

  .page-industry-news__content-with-image {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 0;
  }

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

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

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

  .page-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

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

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

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

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

  .page-industry-news__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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