/* style/resources-vf555-industry-news-2024.css */

/* Biến CSS */
:root {
  --page-primary-color: #007bff;
  --page-secondary-color: #ffc107;
  --page-dark-text: #212529;
  --page-light-text: #f8f9fa;
  --page-grey-bg: #e9ecef;
  --page-border-color: #dee2e6;
}

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

.page-resources-vf555-industry-news-2024__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-resources-vf555-industry-news-2024__hero {
  background: linear-gradient(135deg, var(--page-primary-color), #0056b3);
  color: var(--page-light-text);
  padding: 60px 0;
  text-align: center;
}

.page-resources-vf555-industry-news-2024__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--page-light-text);
  line-height: 1.2;
}

.page-resources-vf555-industry-news-2024__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-vf555-industry-news-2024__back-link {
  display: inline-block;
  color: var(--page-secondary-color);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid var(--page-secondary-color);
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-vf555-industry-news-2024__back-link:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
}

/* Article Content */
.page-resources-vf555-industry-news-2024__article-content {
  padding: 40px 0;
}

.page-resources-vf555-industry-news-2024__article-body p {
  margin-bottom: 1em;
  font-size: 1.1em; /* 17.6px based on 16px default */
}

.page-resources-vf555-industry-news-2024__article-body ul {
  margin-bottom: 1em;
  padding-left: 25px;
  list-style-type: disc;
}

.page-resources-vf555-industry-news-2024__article-body li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.page-resources-vf555-industry-news-2024__section-title {
  font-size: 2em;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--page-secondary-color);
  padding-bottom: 10px;
}

.page-resources-vf555-industry-news-2024__sub-section-title {
  font-size: 1.5em;
  color: #343a40;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-vf555-industry-news-2024__article-body strong {
  font-weight: bold;
  color: var(--page-primary-color);
}

/* Image Styling */
.page-resources-vf555-industry-news-2024__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-vf555-industry-news-2024__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vf555-industry-news-2024__image-caption {
  font-size: 0.9em;
  color: #6c757d;
  margin-top: 10px;
}

/* Call to Action Box */
.page-resources-vf555-industry-news-2024__cta-box {
  background-color: var(--page-grey-bg);
  border: 1px solid var(--page-border-color);
  border-left: 5px solid var(--page-secondary-color);
  padding: 25px;
  margin: 40px 0;
  border-radius: 8px;
  text-align: center;
}

.page-resources-vf555-industry-news-2024__cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: var(--page-dark-text);
  font-weight: bold;
}

.page-resources-vf555-industry-news-2024__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
  white-space: nowrap;
}

.page-resources-vf555-industry-news-2024__btn--primary {
  background-color: var(--page-primary-color);
  color: var(--page-light-text);
  border: 1px solid var(--page-primary-color);
}

.page-resources-vf555-industry-news-2024__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-resources-vf555-industry-news-2024__btn--secondary {
  background-color: var(--page-secondary-color);
  color: var(--page-dark-text);
  border: 1px solid var(--page-secondary-color);
}

.page-resources-vf555-industry-news-2024__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-vf555-industry-news-2024__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--page-border-color);
}

.page-resources-vf555-industry-news-2024__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-vf555-industry-news-2024__hero-title {
    font-size: 2.2em;
  }

  .page-resources-vf555-industry-news-2024__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-vf555-industry-news-2024__section-title {
    font-size: 1.8em;
  }

  .page-resources-vf555-industry-news-2024__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-vf555-industry-news-2024__article-body p,
  .page-resources-vf555-industry-news-2024__article-body li {
    font-size: 1em;
  }

  .page-resources-vf555-industry-news-2024__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 15px auto;
  }
  
  .page-resources-vf555-industry-news-2024__cta-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-vf555-industry-news-2024__hero {
    padding: 40px 0;
  }

  .page-resources-vf555-industry-news-2024__hero-title {
    font-size: 1.8em;
  }

  .page-resources-vf555-industry-news-2024__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-vf555-industry-news-2024__article-content {
    padding: 20px 0;
  }

  .page-resources-vf555-industry-news-2024__section-title {
    font-size: 1.5em;
  }

  .page-resources-vf555-industry-news-2024__sub-section-title {
    font-size: 1.2em;
  }

  .page-resources-vf555-industry-news-2024__btn--large {
    font-size: 1.1em;
    padding: 12px 20px;
  }
}