/* style/blog-how-to-use-hbet-safely.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #0a0a0a; /* Body background from shared.css */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --card-bg-dark-theme: rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-use-hbet-safely {
  color: var(--text-color-light); /* Dark body background, so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
}

.page-blog-how-to-use-hbet-safely__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  overflow: hidden;
  color: var(--text-color-light);
}

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

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

.page-blog-how-to-use-hbet-safely__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-how-to-use-hbet-safely__hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-how-to-use-hbet-safely__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-how-to-use-hbet-safely__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-how-to-use-hbet-safely__section {
  padding: 60px 20px;
  box-sizing: border-box;
  width: 100%;
}

.page-blog-how-to-use-hbet-safely__content-area {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-color-light);
  background-color: var(--background-color);
}

.page-blog-how-to-use-hbet-safely__dark-section {
  background-color: #1a1a1a;
  color: var(--text-color-light);
}

.page-blog-how-to-use-hbet-safely__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-blog-how-to-use-hbet-safely__sub-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-use-hbet-safely__text-block p {
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-blog-how-to-use-hbet-safely__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-how-to-use-hbet-safely__list,
.page-blog-how-to-use-hbet-safely__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
  color: var(--text-color-light);
}

.page-blog-how-to-use-hbet-safely__list li,
.page-blog-how-to-use-hbet-safely__ordered-list li {
  margin-bottom: 10px;
  color: var(--text-color-light);
}

.page-blog-how-to-use-hbet-safely__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-use-hbet-safely__btn-primary,
.page-blog-how-to-use-hbet-safely__btn-secondary,
.page-blog-how-to-use-hbet-safely__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-hbet-safely__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-use-hbet-safely__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-how-to-use-hbet-safely__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-use-hbet-safely__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

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

.page-blog-how-to-use-hbet-safely__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-blog-how-to-use-hbet-safely__faq-item {
  background-color: var(--card-bg-dark-theme);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-how-to-use-hbet-safely__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--secondary-color);
  position: relative;
  list-style: none;
  user-select: none;
}

.page-blog-how-to-use-hbet-safely__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-use-hbet-safely__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-use-hbet-safely__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Details open state for toggle icon */
.page-blog-how-to-use-hbet-safely__faq-item[open] .page-blog-how-to-use-hbet-safely__faq-toggle {
  content: '−';
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-how-to-use-hbet-safely {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-use-hbet-safely__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-how-to-use-hbet-safely__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-use-hbet-safely__hero-description {
    font-size: 1rem;
  }

  .page-blog-how-to-use-hbet-safely__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-use-hbet-safely__btn-primary,
  .page-blog-how-to-use-hbet-safely__btn-secondary,
  .page-blog-how-to-use-hbet-safely__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-use-hbet-safely__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-how-to-use-hbet-safely__section {
    padding: 40px 15px;
  }

  .page-blog-how-to-use-hbet-safely__content-area,
  .page-blog-how-to-use-hbet-safely__dark-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-use-hbet-safely__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-blog-how-to-use-hbet-safely__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

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

  .page-blog-how-to-use-hbet-safely__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-how-to-use-hbet-safely__faq-answer {
    padding: 0 20px 15px;
  }
}