/* Base styles for the page */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F3F8FF); /* Default text color for dark backgrounds */
}

/* Container for content width */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

/* Section styling */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__content-section {
  padding: 60px 0;
}

/* Dark background sections */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__dark-bg {
  background-color: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

/* Light background sections */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__light-bg {
  background-color: #f8f9fa; /* A very light grey for contrast */
  color: #333333; /* Dark text for light backgrounds */
}

/* Hero Section */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming body has header offset */
  background-color: var(--deep-navy, #08162B); /* Fallback for hero background */
}

.page-blog-khuyen-mai-moi-nhat-tu-km1888b__hero-image-wrapper {
  width: 100%;
  height: 600px; /* Fixed height for desktop hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-khuyen-mai-moi-nhat-tu-km1888b__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover ensures image fills, but mobile will use contain */
  display: block;
}

.page-blog-khuyen-mai-moi-nhat-tu-km1888b__hero-content {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
  padding: 0 15px;
  color: var(--text-main, #F3F8FF);
}

.page-blog-khuyen-mai-moi-nhat-tu-km1888b__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-main, #F3F8FF);
}

.page-blog-khuyen-mai-moi-nhat-tu-km1888b__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #AFC4E8);
}

.page-blog-khuyen-mai-moi-nhat-tu-km1888b__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* General button styles */
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__btn-primary,
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__btn-secondary,
.page-blog-khuyen-mai-moi-nhat-tu-km1888b__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}