/* style/blog-777king99-the-thao-deep-dive.css */

/* Base styles for the page */
.page-blog-777king99-the-thao-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Hero Section */
.page-blog-777king99-the-thao-deep-dive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 40px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green - fitting for hero background */
}

.page-blog-777king99-the-thao-deep-dive__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%; /* Ensures image is responsive */
  display: block;
  object-fit: cover;
  margin-bottom: 20px; /* Space between image and content */
}

.page-blog-777king99-the-thao-deep-dive__hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-777king99-the-thao-deep-dive__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
  letter-spacing: 1px;
}

.page-blog-777king99-the-thao-deep-dive__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Primary Button Style */
.page-blog-777king99-the-thao-deep-dive__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-777king99-the-thao-deep-dive__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slight change on hover */
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-777king99-the-thao-deep-dive__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-777king99-the-thao-deep-dive__section-wrapper {
  padding: 20px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-777king99-the-thao-deep-dive__section-wrapper:last-of-type {
  border-bottom: none;
}

.page-blog-777king99-the-thao-deep-dive__section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #11A84E; /* Main color for section titles */
}

.page-blog-777king99-the-thao-deep-dive__content-area p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-777king99-the-thao-deep-dive__content-area strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-777king99-the-thao-deep-dive__content-area a {
  color: #F2C14E; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-777king99-the-thao-deep-dive__content-area a:hover {
  color: #57E38D; /* Glow on hover */
  text-decoration: underline;
}

/* Inline Images */
.page-blog-777king99-the-thao-deep-dive__image-inline {
  width: 100%;
  height: auto;
  min-height: 200px; /* Minimum size requirement */
  max-width: 800px; /* Max width for content images */
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
.page-blog-777king99-the-thao-deep-dive__faq-list {
  margin-top: 30px;
}

.page-blog-777king99-the-thao-deep-dive__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-777king99-the-thao-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #0A4B2C; /* Deep Green - darker background for question */
  color: #F2FFF6; /* Text Main */
  user-select: none;
  list-style: none;
}

.page-blog-777king99-the-thao-deep-dive__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-777king99-the-thao-deep-dive__faq-item summary {
  list-style: none;
}

.page-blog-777king99-the-thao-deep-dive__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-777king99-the-thao-deep-dive__faq-item[open] .page-blog-777king99-the-thao-deep-dive__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-777king99-the-thao-deep-dive__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-777king99-the-thao-deep-dive__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .page-blog-777king99-the-thao-deep-dive__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-777king99-the-thao-deep-dive {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-777king99-the-thao-deep-dive__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-blog-777king99-the-thao-deep-dive__hero-content {
    padding: 0 15px;
  }

  .page-blog-777king99-the-thao-deep-dive__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-777king99-the-thao-deep-dive__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-777king99-the-thao-deep-dive__btn-primary {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-777king99-the-thao-deep-dive__content-area {
    padding: 20px 15px;
  }

  .page-blog-777king99-the-thao-deep-dive__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-777king99-the-thao-deep-dive__content-area p {
    font-size: 0.95rem;
  }

  /* Image responsive rules */
  .page-blog-777king99-the-thao-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important;
  }

  .page-blog-777king99-the-thao-deep-dive__section,
  .page-blog-777king99-the-thao-deep-dive__card,
  .page-blog-777king99-the-thao-deep-dive__container,
  .page-blog-777king99-the-thao-deep-dive__section-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-777king99-the-thao-deep-dive__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-777king99-the-thao-deep-dive__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }
}