/* style/industry-news-industry-leader-interviews.css */

/* Biến CSS */
:root {
  --page-industry-news-tk88-primary-color: #003366; /* Deep Blue */
  --page-industry-news-tk88-secondary-color: #FFD700; /* Gold */
  --page-industry-news-tk88-accent-color: #32CD32; /* Lime Green for CTA */
  --page-industry-news-tk88-text-color-dark: #333333;
  --page-industry-news-tk88-text-color-light: #ffffff;
  --page-industry-news-tk88-bg-light: #f9f9f9;
  --page-industry-news-tk88-bg-dark: #002244;
}

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

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

/* Hero Section */
.page-industry-news-industry-leader-interviews__hero-section {
  background: linear-gradient(135deg, var(--page-industry-news-tk88-primary-color), var(--page-industry-news-tk88-bg-dark));
  color: var(--page-industry-news-tk88-text-color-light);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-industry-leader-interviews__hero-content {
  position: relative;
  z-index: 2;
}

.page-industry-news-industry-leader-interviews__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-industry-news-tk88-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-industry-leader-interviews__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-industry-leader-interviews__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

/* Content Blocks */
.page-industry-news-industry-leader-interviews__content-block {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-industry-news-industry-leader-interviews__content-block:last-of-type {
  border-bottom: none;
}

.page-industry-news-industry-leader-interviews__section-title {
  font-size: 2.2em;
  color: var(--page-industry-news-tk88-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-industry-news-industry-leader-interviews__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-industry-news-tk88-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-industry-news-industry-leader-interviews__sub-section-title {
  font-size: 1.8em;
  color: var(--page-industry-news-tk88-primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid var(--page-industry-news-tk88-secondary-color);
  padding-left: 15px;
}

.page-industry-news-industry-leader-interviews__content-block p {
  font-size: 1.1em;
  margin-bottom: 1em;
  line-height: 1.8;
  color: var(--page-industry-news-tk88-text-color-dark);
}

.page-industry-news-industry-leader-interviews__content-block p strong {
  color: var(--page-industry-news-tk88-primary-color);
}

.page-industry-news-industry-leader-interviews__leader-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  text-align: center;
}

.page-industry-news-industry-leader-interviews__profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--page-industry-news-tk88-secondary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.page-industry-news-industry-leader-interviews__profile-text {
  max-width: 800px;
  font-style: italic;
  color: #555555;
}

.page-industry-news-industry-leader-interviews__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-industry-news-industry-leader-interviews__advantages-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--page-industry-news-tk88-secondary-color);
  font-size: 1.05em;
  color: var(--page-industry-news-tk88-text-color-dark);
}

.page-industry-news-industry-leader-interviews__advantages-list li strong {
  color: var(--page-industry-news-tk88-primary-color);
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Call to Action */
.page-industry-news-industry-leader-interviews__cta-section {
  background-color: var(--page-industry-news-tk88-primary-color);
  color: var(--page-industry-news-tk88-text-color-light);
  text-align: center;
  padding: 70px 0;
}

.page-industry-news-industry-leader-interviews__cta-section .page-industry-news-industry-leader-interviews__section-title {
  color: var(--page-industry-news-tk88-secondary-color);
}

.page-industry-news-industry-leader-interviews__cta-section .page-industry-news-industry-leader-interviews__section-title::after {
  background-color: var(--page-industry-news-tk88-text-color-light);
}

.page-industry-news-industry-leader-interviews__cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--page-industry-news-tk88-text-color-light);
}

.page-industry-news-industry-leader-interviews__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-news-industry-leader-interviews__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  min-width: 180px;
}

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

.page-industry-news-industry-leader-interviews__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-industry-news-industry-leader-interviews__btn--secondary {
  background-color: transparent;
  color: var(--page-industry-news-tk88-text-color-light);
  border: 2px solid var(--page-industry-news-tk88-text-color-light);
}

.page-industry-news-industry-leader-interviews__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Highlight keyword */
.page-industry-news-industry-leader-interviews .highlight {
  color: var(--page-industry-news-tk88-secondary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-industry-leader-interviews__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-industry-leader-interviews__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-industry-leader-interviews__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-industry-leader-interviews__sub-section-title {
    font-size: 1.5em;
  }
  .page-industry-news-industry-leader-interviews__content-block p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-industry-news-industry-leader-interviews__hero-section {
    padding: 60px 0 30px;
  }
  .page-industry-news-industry-leader-interviews__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-industry-leader-interviews__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news-industry-leader-interviews__content-block {
    padding: 40px 0;
  }
  .page-industry-news-industry-leader-interviews__section-title {
    font-size: 1.6em;
  }
  .page-industry-news-industry-leader-interviews__sub-section-title {
    font-size: 1.3em;
  }
  .page-industry-news-industry-leader-interviews__leader-profile {
    flex-direction: column;
  }
  .page-industry-news-industry-leader-interviews__profile-image {
    width: 150px;
    height: 150px;
  }
  .page-industry-news-industry-leader-interviews__advantages-list {
    grid-template-columns: 1fr;
  }
  .page-industry-news-industry-leader-interviews__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-industry-news-industry-leader-interviews__btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-industry-leader-interviews__hero-title {
    font-size: 1.5em;
  }
  .page-industry-news-industry-leader-interviews__hero-subtitle {
    font-size: 0.9em;
  }
  .page-industry-news-industry-leader-interviews__section-title {
    font-size: 1.4em;
  }
  .page-industry-news-industry-leader-interviews__sub-section-title {
    font-size: 1.2em;
  }
  .page-industry-news-industry-leader-interviews__content-block p {
    font-size: 0.95em;
  }
}

/* Ensure color contrast for text */
.page-industry-news-industry-leader-interviews p,
.page-industry-news-industry-leader-interviews li {
  color: var(--page-industry-news-tk88-text-color-dark); /* Ensure dark text on light background */
}

.page-industry-news-industry-leader-interviews__hero-title,
.page-industry-news-industry-leader-interviews__hero-subtitle,
.page-industry-news-industry-leader-interviews__cta-section p,
.page-industry-news-industry-leader-interviews__btn--secondary {
  color: var(--page-industry-news-tk88-text-color-light); /* Ensure light text on dark background */
}

.page-industry-news-industry-leader-interviews__section-title,
.page-industry-news-industry-leader-interviews__sub-section-title,
.page-industry-news-industry-leader-interviews__advantages-list li strong {
  color: var(--page-industry-news-tk88-primary-color); /* Primary color for titles */
}

.page-industry-news-industry-leader-interviews__cta-section .page-industry-news-industry-leader-interviews__section-title {
  color: var(--page-industry-news-tk88-secondary-color); /* Gold on dark blue for CTA title */
}

/* Ensure contrast for primary button text on primary button background */
.page-industry-news-industry-leader-interviews__btn--primary {
  color: var(--page-industry-news-tk88-primary-color); /* Deep blue text on gold button */
}