/* style/blog-how-to-choose-moto88.css */

/* Body background is var(--black-color), implying a dark background. Text should be light. */
.page-blog-how-to-choose-moto88 {
  color: #ffffff; /* Default text color for the main content area */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-choose-moto88__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-how-to-choose-moto88__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.page-blog-how-to-choose-moto88__dark-bg {
  background: #26A9E0; /* Main brand color for dark sections */
  color: #ffffff;
}

.page-blog-how-to-choose-moto88__light-bg {
  background: #FFFFFF; /* Auxiliary brand color for light sections */
  color: #333333;
}

.page-blog-how-to-choose-moto88__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 */
  overflow: hidden;
}

.page-blog-how-to-choose-moto88__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-choose-moto88__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-moto88__hero-content {
  max-width: 900px;
  margin-top: 40px;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

.page-blog-how-to-choose-moto88__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  max-width: 100%;
}

.page-blog-how-to-choose-moto88__lead-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-blog-how-to-choose-moto88__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-how-to-choose-moto88__btn-primary,
.page-blog-how-to-choose-moto88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-moto88__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-how-to-choose-moto88__btn-primary:hover {
  background: #c76706;
  border-color: #c76706;
}

.page-blog-how-to-choose-moto88__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-how-to-choose-moto88__btn-secondary:hover {
  background: #ffffff;
  color: #26A9E0;
}

.page-blog-how-to-choose-moto88__inline-btn {
  margin-top: 20px;
}

.page-blog-how-to-choose-moto88__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: inherit; /* Inherits from parent section */
}

.page-blog-how-to-choose-moto88__content-area p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-how-to-choose-moto88__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-moto88__list {
  list-style: disc inside;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 20px;
  color: inherit;
}

.page-blog-how-to-choose-moto88__list-item {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-how-to-choose-moto88__list-item h3 {
  font-size: 1.3rem;
  margin-top: 15px;
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-how-to-choose-moto88__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-moto88__card {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-blog-how-to-choose-moto88__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-how-to-choose-moto88__sub-list {
  list-style: circle inside;
  margin-top: 10px;
  padding-left: 20px;
  color: inherit;
}

.page-blog-how-to-choose-moto88__sub-list-item {
  margin-bottom: 5px;
  color: inherit;
}

.page-blog-how-to-choose-moto88__sub-list-item a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-how-to-choose-moto88__sub-list-item a:hover {
  text-decoration: underline;
}

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

.page-blog-how-to-choose-moto88__product-card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-how-to-choose-moto88__product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-how-to-choose-moto88__product-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-blog-how-to-choose-moto88__product-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-blog-how-to-choose-moto88__product-title a:hover {
  text-decoration: underline;
}

.page-blog-how-to-choose-moto88__product-card p {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-blog-how-to-choose-moto88__numbered-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-blog-how-to-choose-moto88__numbered-list .page-blog-how-to-choose-moto88__list-item {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.page-blog-how-to-choose-moto88__numbered-list .page-blog-how-to-choose-moto88__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #26A9E0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-blog-how-to-choose-moto88__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-moto88__feature-item {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-blog-how-to-choose-moto88__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-moto88__feature-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-how-to-choose-moto88__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-how-to-choose-moto88__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-how-to-choose-moto88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background: #26A9E0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-moto88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-moto88__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-moto88__faq-item[open] .page-blog-how-to-choose-moto88__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-moto88__faq-answer {
  padding: 20px;
  font-size: 1.05rem;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-choose-moto88__faq-answer p {
  margin-bottom: 0;
  color: inherit;
}

.page-blog-how-to-choose-moto88__faq-answer a {
  color: #EA7C07;
  text-decoration: none;
}

.page-blog-how-to-choose-moto88__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-how-to-choose-moto88__disclaimer {
  font-size: 0.9rem;
  color: #f0f0f0;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-moto88__hero-content {
    max-width: 700px;
  }
  .page-blog-how-to-choose-moto88__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-how-to-choose-moto88__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-moto88__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-how-to-choose-moto88__hero-content {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-moto88__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-how-to-choose-moto88__lead-text {
    font-size: 1rem;
  }
  .page-blog-how-to-choose-moto88__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-moto88__btn-primary,
  .page-blog-how-to-choose-moto88__btn-secondary {
    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-how-to-choose-moto88__section {
    padding: 40px 15px;
  }
  .page-blog-how-to-choose-moto88__content-area {
    padding: 30px 15px;
  }
  .page-blog-how-to-choose-moto88__section-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-choose-moto88 p,
  .page-blog-how-to-choose-moto88 li {
    font-size: 1rem;
  }
  .page-blog-how-to-choose-moto88__image,
  .page-blog-how-to-choose-moto88__product-image,
  .page-blog-how-to-choose-moto88__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-choose-moto88__product-card,
  .page-blog-how-to-choose-moto88__feature-item,
  .page-blog-how-to-choose-moto88__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-how-to-choose-moto88__grid-container,
  .page-blog-how-to-choose-moto88__product-grid,
  .page-blog-how-to-choose-moto88__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-choose-moto88__numbered-list .page-blog-how-to-choose-moto88__list-item {
    padding-left: 50px;
  }
  .page-blog-how-to-choose-moto88__numbered-list .page-blog-how-to-choose-moto88__list-item::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .page-blog-how-to-choose-moto88__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }
  .page-blog-how-to-choose-moto88__faq-answer {
    font-size: 0.95rem;
    padding: 15px;
  }
}