/* style/blog-choosing-the-best-online-tongits-platform.css */

:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --background-color: #0A0A0A; /* From custom配色 */
  --card-background: #111111; /* From custom配色 */
  --text-main-color: #FFF6D6; /* From custom配色 */
  --border-color: #3A2A12; /* From custom配色 */
  --glow-color: #FFD36B; /* From custom配色 */
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --header-offset: 120px; /* Default for desktop, adjusted in shared.css for mobile */
}

.page-blog-choosing-the-best-online-tongits-platform {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Ensure light text on dark body background */
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-blog-choosing-the-best-online-tongits-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-choosing-the-best-online-tongits-platform__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Desktop header offset */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A0A0A, #1a1a1a); /* Dark gradient for hero background */
}

.page-blog-choosing-the-best-online-tongits-platform__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-choosing-the-best-online-tongits-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-choosing-the-best-online-tongits-platform__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-choosing-the-best-online-tongits-platform__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--text-main-color);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-choosing-the-best-online-tongits-platform__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-choosing-the-best-online-tongits-platform__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-choosing-the-best-online-tongits-platform__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-blog-choosing-the-best-online-tongits-platform__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-choosing-the-best-online-tongits-platform__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-choosing-the-best-online-tongits-platform__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-choosing-the-best-online-tongits-platform__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-choosing-the-best-online-tongits-platform__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* Section Backgrounds */
.page-blog-choosing-the-best-online-tongits-platform__dark-section {
  background-color: var(--background-color);
  color: var(--text-main-color);
  padding: 60px 0;
}

.page-blog-choosing-the-best-online-tongits-platform__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: var(--text-main-color);
  padding: 60px 0;
}

/* Card Styles */
.page-blog-choosing-the-best-online-tongits-platform__card {
  background-color: var(--card-background);
  color: var(--text-main-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-choosing-the-best-online-tongits-platform__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-choosing-the-best-online-tongits-platform__card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-choosing-the-best-online-tongits-platform__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Ensure images are not too small */
}

.page-blog-choosing-the-best-online-tongits-platform__card-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-choosing-the-best-online-tongits-platform__card-description {
  font-size: 1rem;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

.page-blog-choosing-the-best-online-tongits-platform__btn-link {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-choosing-the-best-online-tongits-platform__btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-blog-choosing-the-best-online-tongits-platform__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CTA Banner */
.page-blog-choosing-the-best-online-tongits-platform__cta-banner {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(90deg, #F2C14E, #FFD36B); /* Brand color gradient */
  color: #111111; /* Dark text on light background for contrast */
}

.page-blog-choosing-the-best-online-tongits-platform__cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #111111;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-choosing-the-best-online-tongits-platform__cta-description {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-choosing-the-best-online-tongits-platform__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-choosing-the-best-online-tongits-platform__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-choosing-the-best-online-tongits-platform__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-choosing-the-best-online-tongits-platform__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.page-blog-choosing-the-best-online-tongits-platform__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Platform Cards */
.page-blog-choosing-the-best-online-tongits-platform__platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Getting Started Steps */
.page-blog-choosing-the-best-online-tongits-platform__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-choosing-the-best-online-tongits-platform__step-card {
  background-color: var(--card-background);
  color: var(--text-main-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--border-color);
}

.page-blog-choosing-the-best-online-tongits-platform__step-title {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-choosing-the-best-online-tongits-platform__step-description {
  font-size: 1rem;
  color: var(--text-main-color);
}

/* FAQ Section */
.page-blog-choosing-the-best-online-tongits-platform__faq-section {
  padding: 60px 0;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-choosing-the-best-online-tongits-platform__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-choosing-the-best-online-tongits-platform__faq-item {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-choosing-the-best-online-tongits-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: var(--card-background);
  color: var(--text-main-color);
  font-weight: bold;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

.page-blog-choosing-the-best-online-tongits-platform__faq-question:hover {
  background-color: #1a1a1a;
}

.page-blog-choosing-the-best-online-tongits-platform__faq-title {
  color: var(--text-main-color);
  font-size: 1.15rem;
  margin: 0;
}

.page-blog-choosing-the-best-online-tongits-platform__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-blog-choosing-the-best-online-tongits-platform__faq-item.active .page-blog-choosing-the-best-online-tongits-platform__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-choosing-the-best-online-tongits-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #0d0d0d; /* Slightly different background for answer */
  color: var(--text-main-color);
}

.page-blog-choosing-the-best-online-tongits-platform__faq-item.active .page-blog-choosing-the-best-online-tongits-platform__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px !important;
}

.page-blog-choosing-the-best-online-tongits-platform__faq-answer p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Conclusion Section */
.page-blog-choosing-the-best-online-tongits-platform__conclusion-section {
  text-align: center;
  padding: 60px 0 80px 0;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-choosing-the-best-online-tongits-platform__cta-button--bottom {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-choosing-the-best-online-tongits-platform__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__sub-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__text-block {
    font-size: 1rem;
  }

  .page-blog-choosing-the-best-online-tongits-platform__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__cta-description {
    font-size: 1.1rem;
  }

  .page-blog-choosing-the-best-online-tongits-platform__feature-grid,
  .page-blog-choosing-the-best-online-tongits-platform__platform-cards,
  .page-blog-choosing-the-best-online-tongits-platform__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-choosing-the-best-online-tongits-platform__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
    padding-bottom: 40px;
  }

  .page-blog-choosing-the-best-online-tongits-platform__container {
    padding: 0 15px;
  }

  .page-blog-choosing-the-best-online-tongits-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-choosing-the-best-online-tongits-platform__section,
  .page-blog-choosing-the-best-online-tongits-platform__card,
  .page-blog-choosing-the-best-online-tongits-platform__container,
  .page-blog-choosing-the-best-online-tongits-platform__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-choosing-the-best-online-tongits-platform__cta-button,
  .page-blog-choosing-the-best-online-tongits-platform__btn-primary,
  .page-blog-choosing-the-best-online-tongits-platform__btn-secondary,
  .page-blog-choosing-the-best-online-tongits-platform a[class*="button"],
  .page-blog-choosing-the-best-online-tongits-platform 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-left: 15px;
    padding-right: 15px;
  }

  .page-blog-choosing-the-best-online-tongits-platform__cta-buttons,
  .page-blog-choosing-the-best-online-tongits-platform__button-group,
  .page-blog-choosing-the-best-online-tongits-platform__btn-container {
    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-choosing-the-best-online-tongits-platform__cta-buttons {
    flex-direction: column;
  }

  .page-blog-choosing-the-best-online-tongits-platform__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .page-blog-choosing-the-best-online-tongits-platform__card-title {
    font-size: 1.3rem;
  }

  .page-blog-choosing-the-best-online-tongits-platform__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-choosing-the-best-online-tongits-platform__faq-title {
    font-size: 1rem;
  }

  .page-blog-choosing-the-best-online-tongits-platform__faq-answer {
    padding: 0 15px;
  }

  .page-blog-choosing-the-best-online-tongits-platform__faq-item.active .page-blog-choosing-the-best-online-tongits-platform__faq-answer {
    padding: 15px !important;
  }
}