/* style/blog-kim99-latest-promotions.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --button-login: #EA7C07;
}

.page-blog-kim99-latest-promotions {
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--background-light); /* Assuming shared body background is light */
}

.page-blog-kim99-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #26A9E0; /* Brand color as background */
  color: var(--text-light);
  text-align: center;
}

.page-blog-kim99-latest-promotions__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-kim99-latest-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-kim99-latest-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-blog-kim99-latest-promotions__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-blog-kim99-latest-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-kim99-latest-promotions__btn-primary {
  background-color: var(--button-login); /* Login color for primary CTA */
  color: var(--text-light);
  border: 2px solid var(--button-login);
}

.page-blog-kim99-latest-promotions__btn-primary:hover {
  background-color: #e06c00;
  transform: translateY(-2px);
}

.page-blog-kim99-latest-promotions__section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-blog-kim99-latest-promotions__overview-section {
  background-color: #f8f8f8;
}

.page-blog-kim99-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-kim99-latest-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-kim99-latest-promotions__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-blog-kim99-latest-promotions__paragraph a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-kim99-latest-promotions__promo-categories {
  background-color: var(--background-light);
}

.page-blog-kim99-latest-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-kim99-latest-promotions__card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-kim99-latest-promotions__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-blog-kim99-latest-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 20px 15px;
}

.page-blog-kim99-latest-promotions__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-kim99-latest-promotions__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-blog-kim99-latest-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.page-blog-kim99-latest-promotions__how-to-claim {
  background-color: #f0f8ff;
}

.page-blog-kim99-latest-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-blog-kim99-latest-promotions__step-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-kim99-latest-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-blog-kim99-latest-promotions__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-blog-kim99-latest-promotions__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-blog-kim99-latest-promotions__tips-section {
  background-color: var(--background-light);
}

.page-blog-kim99-latest-promotions__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-kim99-latest-promotions__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
}

.page-blog-kim99-latest-promotions__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-kim99-latest-promotions__list-item a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-kim99-latest-promotions__faq-section {
  background-color: #f0f8ff;
}

.page-blog-kim99-latest-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-kim99-latest-promotions__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-kim99-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-dark);
  background-color: #f9f9f9;
  user-select: none;
}

.page-blog-kim99-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-kim99-latest-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
}

.page-blog-kim99-latest-promotions__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-blog-kim99-latest-promotions__cta-bottom {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-blog-kim99-latest-promotions__cta-container .page-blog-kim99-latest-promotions__section-title,
.page-blog-kim99-latest-promotions__cta-container .page-blog-kim99-latest-promotions__paragraph {
  color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-kim99-latest-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-kim99-latest-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-kim99-latest-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-kim99-latest-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-blog-kim99-latest-promotions__intro-text {
    font-size: 1em;
  }
  .page-blog-kim99-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-kim99-latest-promotions__section {
    padding: 40px 0;
  }
  .page-blog-kim99-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-kim99-latest-promotions__paragraph,
  .page-blog-kim99-latest-promotions__card-text,
  .page-blog-kim99-latest-promotions__list-item,
  .page-blog-kim99-latest-promotions__step-text,
  .page-blog-kim99-latest-promotions__faq-answer {
    font-size: 0.95em;
  }
  .page-blog-kim99-latest-promotions__grid,
  .page-blog-kim99-latest-promotions__steps {
    grid-template-columns: 1fr;
  }
  .page-blog-kim99-latest-promotions__card-image {
    height: 180px;
  }
  .page-blog-kim99-latest-promotions__card-title {
    font-size: 1.3em;
  }
  .page-blog-kim99-latest-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-blog-kim99-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-kim99-latest-promotions__section,
  .page-blog-kim99-latest-promotions__card,
  .page-blog-kim99-latest-promotions__container,
  .page-blog-kim99-latest-promotions__cta-container,
  .page-blog-kim99-latest-promotions__steps,
  .page-blog-kim99-latest-promotions__grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-kim99-latest-promotions__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }
  /* Button containers for multiple buttons */
  .page-blog-kim99-latest-promotions__cta-buttons,
  .page-blog-kim99-latest-promotions__button-group,
  .page-blog-kim99-latest-promotions__btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}