.page-blog-gioi-thieu-tong-quan-i888 {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: #0A0A0A; /* Ensure consistency with body background if not set by shared */
}

/* Fixed header spacing - assuming shared.css sets body padding-top */
.page-blog-gioi-thieu-tong-quan-i888__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Match body background */
}

.page-blog-gioi-thieu-tong-quan-i888__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.page-blog-gioi-thieu-tong-quan-i888__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-blog-gioi-thieu-tong-quan-i888__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Brand color for H1 */
}

.page-blog-gioi-thieu-tong-quan-i888__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-blog-gioi-thieu-tong-quan-i888__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-blog-gioi-thieu-tong-quan-i888__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block; /* Ensure it behaves as a block element for layout */
}

.page-blog-gioi-thieu-tong-quan-i888__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-blog-gioi-thieu-tong-quan-i888__cta-buttons--center {
  justify-content: center;
}

.page-blog-gioi-thieu-tong-quan-i888__btn-primary,
.page-blog-gioi-thieu-tong-quan-i888__btn-secondary,
.page-blog-gioi-thieu-tong-quan-i888__btn-link {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-blog-gioi-thieu-tong-quan-i888__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #1A1A1A; /* Dark text on light button for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-gioi-thieu-tong-quan-i888__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-gioi-thieu-tong-quan-i888__btn-secondary {
  background: #111111; /* Card BG color */
  color: #FFD36B; /* Glow color */
  border: 2px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-gioi-thieu-tong-quan-i888__btn-secondary:hover {
  background: #1A1A1A;
  color: #F2C14E;
  border-color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}