/* style/blog-latest-promotions-3win.css */
.page-blog-latest-promotions-3win {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính cho nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-latest-promotions-3win__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Nhỏ gọn hơn so với var(--header-offset) */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-latest-promotions-3win__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Giới hạn chiều cao cho hình ảnh chính */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-latest-promotions-3win__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-latest-promotions-3win__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-latest-promotions-3win__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 4vw + 1rem, 3.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-blog-latest-promotions-3win__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-3win__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-promotions-3win__btn-primary,
.page-blog-latest-promotions-3win__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-latest-promotions-3win__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-3win__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-latest-promotions-3win__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-blog-latest-promotions-3win__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  color: #F2FFF6; /* Text Main */
  border-color: #F2FFF6;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-blog-latest-promotions-3win__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-latest-promotions-3win__section:last-of-type {
  border-bottom: none;
}

.page-blog-latest-promotions-3win__section-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-latest-promotions-3win__content-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-latest-promotions-3win__content-block p {
  margin-bottom: 20px;
}

.page-blog-latest-promotions-3win__content-block strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-promotions-3win__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 1000px; /* Recommended content display size */
}

/* Promotion Types Grid */
.page-blog-latest-promotions-3win__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-3win__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-latest-promotions-3win__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-blog-latest-promotions-3win__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-promotions-3win__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Ordered List */
.page-blog-latest-promotions-3win__ordered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 0;
}

.page-blog-latest-promotions-3win__ordered-list li {
  counter-increment: my-awesome-counter;
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-blog-latest-promotions-3win__ordered-list li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #11A84E; /* Primary color */
  color: #F2FFF6; /* Text Main */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}

.page-blog-latest-promotions-3win__ordered-list li strong {
  color: #F2FFF6; /* Text Main */
}

/* Unordered List */
.page-blog-latest-promotions-3win__unordered-list {
  list-style: none;
  padding-left: 0;
}

.page-blog-latest-promotions-3win__unordered-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-blog-latest-promotions-3win__unordered-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* Benefits Grid */
.page-blog-latest-promotions-3win__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-promotions-3win__benefit-item {
  text-align: center;
  background-color: #11271B; /* Card BG */
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-latest-promotions-3win__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-blog-latest-promotions-3win__benefit-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-promotions-3win__benefit-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

/* FAQ Section */
.page-blog-latest-promotions-3win__faq-list {
  margin-top: 40px;
}

.page-blog-latest-promotions-3win__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-promotions-3win__faq-item summary {
  list-style: none;
}

.page-blog-latest-promotions-3win__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-3win__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-blog-latest-promotions-3win__faq-question:hover {
  background-color: #11A84E; /* Primary color */
}

.page-blog-latest-promotions-3win__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-blog-latest-promotions-3win__faq-item[open] .page-blog-latest-promotions-3win__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-latest-promotions-3win__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-blog-latest-promotions-3win__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-latest-promotions-3win__container {
    padding: 0 15px !important;
  }

  .page-blog-latest-promotions-3win__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }

  .page-blog-latest-promotions-3win__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-3win__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-3win__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-promotions-3win__btn-primary,
  .page-blog-latest-promotions-3win__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-promotions-3win__section {
    padding: 40px 0;
  }

  .page-blog-latest-promotions-3win__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-3win__content-block,
  .page-blog-latest-promotions-3win__content-block p,
  .page-blog-latest-promotions-3win__ordered-list li,
  .page-blog-latest-promotions-3win__unordered-list li,
  .page-blog-latest-promotions-3win__card-text,
  .page-blog-latest-promotions-3win__benefit-text,
  .page-blog-latest-promotions-3win__faq-answer {
    font-size: 0.95rem;
  }

  .page-blog-latest-promotions-3win__image,
  .page-blog-latest-promotions-3win__card-image,
  .page-blog-latest-promotions-3win__benefit-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-3win__section,
  .page-blog-latest-promotions-3win__card,
  .page-blog-latest-promotions-3win__container,
  .page-blog-latest-promotions-3win__cta-buttons,
  .page-blog-latest-promotions-3win__grid,
  .page-blog-latest-promotions-3win__benefits-grid,
  .page-blog-latest-promotions-3win__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions-3win__card {
    padding: 20px;
  }

  .page-blog-latest-promotions-3win__card-title {
    font-size: 1.3rem;
  }

  .page-blog-latest-promotions-3win__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions-3win__faq-answer {
    padding: 15px 20px;
  }
}