/* style/blog-how-to-safely-access-kc88-link.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
.page-blog-how-to-safely-access-kc88-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background is white */
}

.page-blog-how-to-safely-access-kc88-link__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #f0f8ff;
}

.page-blog-how-to-safely-access-kc88-link__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-safely-access-kc88-link__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-how-to-safely-access-kc88-link__hero-content {
  max-width: 900px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #333333;
}

.page-blog-how-to-safely-access-kc88-link__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.page-blog-how-to-safely-access-kc88-link__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #555555;
}

.page-blog-how-to-safely-access-kc88-link__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-how-to-safely-access-kc88-link__btn-primary,
.page-blog-how-to-safely-access-kc88-link__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;
  text-align: center;
}

.page-blog-how-to-safely-access-kc88-link__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-safely-access-kc88-link__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-blog-how-to-safely-access-kc88-link__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-safely-access-kc88-link__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-blog-how-to-safely-access-kc88-link__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-blog-how-to-safely-access-kc88-link__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-how-to-safely-access-kc88-link__sub-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-safely-access-kc88-link p {
  margin-bottom: 15px;
}

.page-blog-how-to-safely-access-kc88-link__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-how-to-safely-access-kc88-link__text-link:hover {
  color: #1a7fb0;
}

.page-blog-how-to-safely-access-kc88-link__highlight-text {
  color: #EA7C07;
  font-weight: bold;
}

.page-blog-how-to-safely-access-kc88-link__image-text-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: flex-start;
}

.page-blog-how-to-safely-access-kc88-link__image-text-block .page-blog-how-to-safely-access-kc88-link__content-image {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-safely-access-kc88-link__image-text-block .page-blog-how-to-safely-access-kc88-link__text-content {
  flex: 1 1 50%;
  min-width: 300px;
}

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

.page-blog-how-to-safely-access-kc88-link__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-safely-access-kc88-link__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.page-blog-how-to-safely-access-kc88-link__card-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-safely-access-kc88-link__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-safely-access-kc88-link__image-center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-safely-access-kc88-link__benefits-list,
.page-blog-how-to-safely-access-kc88-link__promotions-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-how-to-safely-access-kc88-link__benefits-list li,
.page-blog-how-to-safely-access-kc88-link__promotions-list li {
  background-color: #f7f7f7;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-blog-how-to-safely-access-kc88-link__list-strong {
  color: #26A9E0;
}

.page-blog-how-to-safely-access-kc88-link__step-by-step ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.page-blog-how-to-safely-access-kc88-link__step-by-step ol li {
  counter-increment: item;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.page-blog-how-to-safely-access-kc88-link__step-by-step ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-blog-how-to-safely-access-kc88-link__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-safely-access-kc88-link__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-safely-access-kc88-link__faq-item summary {
  list-style: none;
}

.page-blog-how-to-safely-access-kc88-link__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-safely-access-kc88-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f7f7f7;
  color: #26A9E0;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-how-to-safely-access-kc88-link__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-safely-access-kc88-link__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-how-to-safely-access-kc88-link__faq-answer {
  padding: 20px;
  background-color: #ffffff;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-how-to-safely-access-kc88-link__hero-content {
    max-width: 768px;
  }

  .page-blog-how-to-safely-access-kc88-link__section-title {
    font-size: 2rem;
  }

  .page-blog-how-to-safely-access-kc88-link__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-safely-access-kc88-link__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-how-to-safely-access-kc88-link__hero-content {
    padding: 0 15px;
  }

  .page-blog-how-to-safely-access-kc88-link__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-safely-access-kc88-link__intro-text {
    font-size: 1rem;
  }

  .page-blog-how-to-safely-access-kc88-link__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-how-to-safely-access-kc88-link__btn-primary,
  .page-blog-how-to-safely-access-kc88-link__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-safely-access-kc88-link__content-area {
    padding: 40px 15px;
  }

  .page-blog-how-to-safely-access-kc88-link__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-safely-access-kc88-link__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-safely-access-kc88-link__image-text-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog-how-to-safely-access-kc88-link__image-text-block .page-blog-how-to-safely-access-kc88-link__content-image,
  .page-blog-how-to-safely-access-kc88-link__image-text-block .page-blog-how-to-safely-access-kc88-link__text-content {
    min-width: unset;
    width: 100%;
  }

  .page-blog-how-to-safely-access-kc88-link__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-safely-access-kc88-link__card {
    padding: 20px;
  }

  .page-blog-how-to-safely-access-kc88-link__card-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-safely-access-kc88-link__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-safely-access-kc88-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-safely-access-kc88-link__section,
  .page-blog-how-to-safely-access-kc88-link__card,
  .page-blog-how-to-safely-access-kc88-link__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-safely-access-kc88-link__hero-section {
    padding-top: 10px !important;
  }
}