/* Base styles for the Hướng Dẫn page */
.page-huong-dan {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text-main, #FFF3E6); /* Default to light text for dark background */
  background: var(--color-background, #0D0E12); /* Default to dark background */
  padding-bottom: 50px;
}

.page-huong-dan__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-background, #0D0E12);
  color: var(--color-text-main, #FFF3E6);
}

.page-huong-dan__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height on desktop */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-huong-dan__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%;
}