/* style/blog-how-to-choose-best-platform.css */

/* Body background is assumed to be dark from shared.css (var(--background-color) likely #08160F), so text color is light */
.page-blog-how-to-choose-best-platform {
  background-color: var(--background-color, #08160F); /* Fallback if var not defined */
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body handles padding-top: var(--header-offset) */
}

.page-blog-how-to-choose-best-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-choose-best-platform__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-how-to-choose-best-platform__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-how-to-choose-best-platform__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-blog-how-to-choose-best-platform__main-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E);
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-how-to-choose-best-platform__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-choose-best-platform__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-choose-best-platform__btn-primary,
.page-blog-how-to-choose-best-platform__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  max-width: 100%;
}

.page-blog-how-to-choose-best-platform__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-best-platform__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-how-to-choose-best-platform__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--gold, #F2C14E);
  border: 2px solid var(--border, #2E7A4E);
}

.page-blog-how-to-choose-best-platform__btn-secondary:hover {
  background: var(--border, #2E7A4E);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-how-to-choose-best-platform__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background, #08160F); /* Consistent dark background */
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-choose-best-platform__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-platform__section-title {
  font-size: 2.2em;
  color: var(--gold, #F2C14E);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-best-platform__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-choose-best-platform__paragraph strong {
  color: var(--text-main, #F2FFF6);
}

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

.page-blog-how-to-choose-best-platform__feature-card,
.page-blog-how-to-choose-best-platform__info-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main, #F2FFF6);
  border: 1px solid var(--divider, #1E3A2A);
}

.page-blog-how-to-choose-best-platform__feature-icon {
  width: 200px; /* Min size */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid var(--border, #2E7A4E);
}

.page-blog-how-to-choose-best-platform__feature-title,
.page-blog-how-to-choose-best-platform__info-title {
  font-size: 1.5em;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-platform__feature-description,
.page-blog-how-to-choose-best-platform__info-description {
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-blog-how-to-choose-best-platform__comparison-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-best-platform__comparison-item {
  flex: 1 1 45%;
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main, #F2FFF6);
  border: 1px solid var(--divider, #1E3A2A);
}

.page-blog-how-to-choose-best-platform__comparison-title {
  font-size: 1.8em;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-choose-best-platform__comparison-list {
  list-style-type: none;
  padding-left: 0;
}

.page-blog-how-to-choose-best-platform__comparison-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-choose-best-platform__comparison-list li::before {
  content: '✓';
  color: var(--glow, #57E38D);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-how-to-choose-best-platform__image-showcase {
  text-align: center;
  margin: 50px 0;
}

.page-blog-how-to-choose-best-platform__showcase-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--border, #2E7A4E);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-best-platform__image-caption {
  margin-top: 15px;
  font-style: italic;
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95em;
}

.page-blog-how-to-choose-best-platform__steps-section {
  background-color: var(--card-bg, #11271B);
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
  border: 1px solid var(--divider, #1E3A2A);
}

.page-blog-how-to-choose-best-platform__steps-title {
  font-size: 1.8em;
  color: var(--gold, #F2C14E);
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-choose-best-platform__steps-list,
.page-blog-how-to-choose-best-platform__tips-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-platform__steps-list li,
.page-blog-how-to-choose-best-platform__tips-list li {
  background-color: var(--deep-green, #0A4B2C);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--text-main, #F2FFF6);
  position: relative;
  padding-left: 45px;
  border-left: 5px solid var(--glow, #57E38D);
}

.page-blog-how-to-choose-best-platform__steps-list li strong {
  color: var(--gold, #F2C14E);
}

.page-blog-how-to-choose-best-platform__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--glow, #57E38D);
  color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-blog-how-to-choose-best-platform__tips-list li::before {
  content: '💡';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-blog-how-to-choose-best-platform__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-blog-how-to-choose-best-platform__faq-section {
  margin-top: 40px;
}

.page-blog-how-to-choose-best-platform__faq-item {
  background-color: var(--card-bg, #11271B);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--divider, #1E3A2A);
  overflow: hidden;
}

.page-blog-how-to-choose-best-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  font-size: 1.1em;
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

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

.page-blog-how-to-choose-best-platform__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--gold, #F2C14E);
  margin-left: 15px;
}

.page-blog-how-to-choose-best-platform__faq-answer {
  padding: 20px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
}

.page-blog-how-to-choose-best-platform__faq-item[open] .page-blog-how-to-choose-best-platform__faq-question {
  border-bottom: 1px solid var(--border, #2E7A4E);
}

.page-blog-how-to-choose-best-platform__conclusion-cta {
  text-align: center;
  margin-top: 60px;
  background-color: var(--card-bg, #11271B);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--divider, #1E3A2A);
}

.page-blog-how-to-choose-best-platform__conclusion-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-best-platform__conclusion-text {
  font-size: 1.2em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-best-platform__main-title {
    font-size: 2.5em;
  }
  .page-blog-how-to-choose-best-platform__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-choose-best-platform__comparison-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-platform {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-best-platform__hero-content {
    padding: 20px 15px;
  }

  .page-blog-how-to-choose-best-platform__main-title {
    font-size: 2em; /* Adjusted for mobile H1 constraint */
  }

  .page-blog-how-to-choose-best-platform__description {
    font-size: 1em;
  }

  .page-blog-how-to-choose-best-platform__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-blog-how-to-choose-best-platform__btn-primary,
  .page-blog-how-to-choose-best-platform__btn-secondary {
    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-how-to-choose-best-platform__content-area {
    padding: 20px 15px;
  }
  
  .page-blog-how-to-choose-best-platform__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-best-platform__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }

  .page-blog-how-to-choose-best-platform__feature-grid,
  .page-blog-how-to-choose-best-platform__info-blocks {
    gap: 20px;
    margin-top: 20px;
  }

  .page-blog-how-to-choose-best-platform__feature-card,
  .page-blog-how-to-choose-best-platform__info-card {
    padding: 20px;
  }

  .page-blog-how-to-choose-best-platform__feature-title,
  .page-blog-how-to-choose-best-platform__info-title {
    font-size: 1.3em;
  }

  .page-blog-how-to-choose-best-platform__comparison-item {
    padding: 20px;
  }

  .page-blog-how-to-choose-best-platform__comparison-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-choose-best-platform__steps-section {
    padding: 30px;
  }

  .page-blog-how-to-choose-best-platform__steps-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-choose-best-platform__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-how-to-choose-best-platform__faq-answer {
    padding: 15px;
  }

  .page-blog-how-to-choose-best-platform__conclusion-cta {
    padding: 30px;
  }

  /* Image responsive */
  .page-blog-how-to-choose-best-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-best-platform__section,
  .page-blog-how-to-choose-best-platform__card,
  .page-blog-how-to-choose-best-platform__container,
  .page-blog-how-to-choose-best-platform__feature-grid,
  .page-blog-how-to-choose-best-platform__info-blocks,
  .page-blog-how-to-choose-best-platform__comparison-block,
  .page-blog-how-to-choose-best-platform__steps-section,
  .page-blog-how-to-choose-best-platform__faq-section,
  .page-blog-how-to-choose-best-platform__conclusion-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  
  .page-blog-how-to-choose-best-platform__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
}