/* style/blog-latest-promotions-ptwin.css */
.page-blog-latest-promotions-ptwin {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so text is light */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-blog-latest-promotions-ptwin__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-blog-latest-promotions-ptwin__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-latest-promotions-ptwin__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 */
  box-sizing: border-box;
}

.page-blog-latest-promotions-ptwin__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-ptwin__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-ptwin__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-promotions-ptwin__intro-text {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-latest-promotions-ptwin__section {
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-latest-promotions-ptwin__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.page-blog-latest-promotions-ptwin__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #26A9E0;
  text-align: center;
}

.page-blog-latest-promotions-ptwin__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-latest-promotions-ptwin__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-promotions-ptwin__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-promotions-ptwin__card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-blog-latest-promotions-ptwin__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-ptwin__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-latest-promotions-ptwin__card-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-latest-promotions-ptwin__btn-primary,
.page-blog-latest-promotions-ptwin__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-ptwin__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border-color: #26A9E0;
}

.page-blog-latest-promotions-ptwin__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-3px);
}

.page-blog-latest-promotions-ptwin__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #26A9E0;
}

.page-blog-latest-promotions-ptwin__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-3px);
}

.page-blog-latest-promotions-ptwin__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-blog-latest-promotions-ptwin__list-item {
  background-color: #f9f9f9;
  color: #333333;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
  padding-left: 70px;
}

.page-blog-latest-promotions-ptwin__list-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #26A9E0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.page-blog-latest-promotions-ptwin__list-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-latest-promotions-ptwin__list-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-latest-promotions-ptwin__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-latest-promotions-ptwin__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-promotions-ptwin__feature-item {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-blog-latest-promotions-ptwin__feature-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-latest-promotions-ptwin__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-latest-promotions-ptwin__feature-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-latest-promotions-ptwin__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-latest-promotions-ptwin__faq-item {
  background-color: #ffffff;
  color: #333333;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-blog-latest-promotions-ptwin__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-latest-promotions-ptwin__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-ptwin__faq-question::marker {
  display: none;
}

.page-blog-latest-promotions-ptwin__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-latest-promotions-ptwin__faq-answer {
  padding: 20px 25px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
}

.page-blog-latest-promotions-ptwin__faq-item[open] .page-blog-latest-promotions-ptwin__faq-question {
  background-color: #e6f5ff;
  border-bottom-color: #26A9E0;
}

.page-blog-latest-promotions-ptwin__cta-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-blog-latest-promotions-ptwin__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-latest-promotions-ptwin__cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-latest-promotions-ptwin__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-blog-latest-promotions-ptwin__cta-button {
  margin-top: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-ptwin__hero-content {
    padding: 30px 15px;
  }
  .page-blog-latest-promotions-ptwin__main-title {
    font-size: 3rem;
  }
  .page-blog-latest-promotions-ptwin__section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-ptwin {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-promotions-ptwin img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-ptwin__section,
  .page-blog-latest-promotions-ptwin__card,
  .page-blog-latest-promotions-ptwin__container,
  .page-blog-latest-promotions-ptwin__hero-section,
  .page-blog-latest-promotions-ptwin__content-area,
  .page-blog-latest-promotions-ptwin__grid,
  .page-blog-latest-promotions-ptwin__feature-grid,
  .page-blog-latest-promotions-ptwin__faq-list,
  .page-blog-latest-promotions-ptwin__cta-section,
  .page-blog-latest-promotions-ptwin__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions-ptwin__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 30px;
  }

  .page-blog-latest-promotions-ptwin__main-title {
    font-size: 2.5rem;
  }

  .page-blog-latest-promotions-ptwin__intro-text {
    font-size: 1rem;
  }

  .page-blog-latest-promotions-ptwin__section-title {
    font-size: 2rem;
  }

  .page-blog-latest-promotions-ptwin__text-block {
    font-size: 1rem;
  }

  .page-blog-latest-promotions-ptwin__card,
  .page-blog-latest-promotions-ptwin__feature-item,
  .page-blog-latest-promotions-ptwin__list-item {
    padding: 20px;
    padding-left: 60px; /* Adjust for list item counter */
  }

  .page-blog-latest-promotions-ptwin__list-item::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions-ptwin__card-title,
  .page-blog-latest-promotions-ptwin__list-title,
  .page-blog-latest-promotions-ptwin__feature-title {
    font-size: 1.3rem;
  }

  .page-blog-latest-promotions-ptwin__btn-primary,
  .page-blog-latest-promotions-ptwin__btn-secondary,
  .page-blog-latest-promotions-ptwin a[class*="button"],
  .page-blog-latest-promotions-ptwin a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-latest-promotions-ptwin__cta-flex {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog-latest-promotions-ptwin__cta-title {
    font-size: 2rem;
  }

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

  .page-blog-latest-promotions-ptwin__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }
}