/* style/resources-bk8-platform-overview.css */
.page-resources-bk8-platform-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #1A1A2E;
}

.page-resources-bk8-platform-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-bk8-platform-overview__hero-section {
  background: linear-gradient(135deg, #1A1A2E, #3a3a5e);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-resources-bk8-platform-overview__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E9B000;
  line-height: 1.2;
}

.page-resources-bk8-platform-overview__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-bk8-platform-overview__cta-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-bk8-platform-overview__cta-button:hover {
  background-color: #FFC400;
  transform: translateY(-2px);
}

.page-resources-bk8-platform-overview__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-bk8-platform-overview__content-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-bk8-platform-overview__sidebar {
  flex: 0 0 280px;
  background-color: #2A2A4A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  align-self: flex-start;
  position: sticky;
  top: 100px; /* Adjust based on header height */
}

.page-resources-bk8-platform-overview__sidebar-title {
  font-size: 1.6em;
  color: #E9B000;
  margin-bottom: 20px;
  border-bottom: 2px solid #3A3A5E;
  padding-bottom: 10px;
}

.page-resources-bk8-platform-overview__table-of-contents ul {
  list-style: none;
  padding: 0;
}

.page-resources-bk8-platform-overview__table-of-contents li {
  margin-bottom: 10px;
}

.page-resources-bk8-platform-overview__table-of-contents a {
  color: #B0B0B0;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s ease;
  display: block;
  padding: 5px 0;
}

.page-resources-bk8-platform-overview__table-of-contents a:hover {
  color: #E9B000;
}

.page-resources-bk8-platform-overview__table-of-contents ul ul {
  padding-left: 20px;
  margin-top: 5px;
}

.page-resources-bk8-platform-overview__table-of-contents ul ul a {
  font-size: 0.9em;
  color: #909090;
}

.page-resources-bk8-platform-overview__table-of-contents ul ul a:hover {
  color: #E9B000;
}

.page-resources-bk8-platform-overview__promo-card {
  background-color: #1A1A2E;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  border: 1px solid #E9B000;
}

.page-resources-bk8-platform-overview__promo-title {
  font-size: 1.4em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-resources-bk8-platform-overview__promo-text {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #B0B0B0;
}

.page-resources-bk8-platform-overview__promo-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-resources-bk8-platform-overview__promo-button:hover {
  background-color: #FFC400;
}

.page-resources-bk8-platform-overview__article-content {
  flex: 1;
  background-color: #2A2A4A;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.7;
}

.page-resources-bk8-platform-overview__section {
  margin-bottom: 40px;
}

.page-resources-bk8-platform-overview__section-title {
  font-size: 2em;
  color: #E9B000;
  margin-bottom: 25px;
  border-bottom: 2px solid #3A3A5E;
  padding-bottom: 10px;
}

.page-resources-bk8-platform-overview__sub-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-bk8-platform-overview__article-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-resources-bk8-platform-overview__article-content a {
  color: #E9B000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-resources-bk8-platform-overview__article-content a:hover {
  color: #FFC400;
  text-decoration: underline;
}

.page-resources-bk8-platform-overview__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-bk8-platform-overview__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-resources-bk8-platform-overview__list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-resources-bk8-platform-overview__list--pros li {
  color: #90EE90; /* Light green for pros */
}

.page-resources-bk8-platform-overview__list--cons li {
  color: #FF6347; /* Tomato red for cons */
}

.page-resources-bk8-platform-overview__inline-cta {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-bk8-platform-overview__inline-cta:hover {
  background-color: #FFC400;
  transform: translateY(-1px);
}

.page-resources-bk8-platform-overview__pros-cons {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.page-resources-bk8-platform-overview__pros,
.page-resources-bk8-platform-overview__cons {
  flex: 1;
  background-color: #3A3A5E;
  padding: 25px;
  border-radius: 8px;
}

.page-resources-bk8-platform-overview__pros .page-resources-bk8-platform-overview__sub-title,
.page-resources-bk8-platform-overview__cons .page-resources-bk8-platform-overview__sub-title {
  color: #E9B000;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-bk8-platform-overview__faq-item {
  background-color: #3A3A5E;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-bk8-platform-overview__faq-question {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-bk8-platform-overview__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
}

.page-resources-bk8-platform-overview__return-link-container {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px dashed #3A3A5E;
}

.page-resources-bk8-platform-overview__return-link {
  font-size: 1.1em;
  color: #E9B000;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-resources-bk8-platform-overview__return-link:hover {
  color: #FFC400;
  transform: translateX(-5px);
}

.page-resources-bk8-platform-overview__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E9B000;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.page-resources-bk8-platform-overview__floating-promo:hover {
  transform: translateY(-5px) scale(1.05);
}

.page-resources-bk8-platform-overview__floating-promo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1A1A2E;
  font-weight: bold;
}

.page-resources-bk8-platform-overview__floating-promo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
}

.page-resources-bk8-platform-overview__floating-promo-text {
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-bk8-platform-overview__content-wrapper {
    flex-direction: column;
  }

  .page-resources-bk8-platform-overview__sidebar {
    width: 100%;
    position: static;
    margin-bottom: 30px;
  }

  .page-resources-bk8-platform-overview__article-content {
    padding: 30px;
  }

  .page-resources-bk8-platform-overview__hero-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-bk8-platform-overview__hero-title {
    font-size: 1.8em;
  }

  .page-resources-bk8-platform-overview__hero-description {
    font-size: 1em;
  }

  .page-resources-bk8-platform-overview__section-title {
    font-size: 1.8em;
  }

  .page-resources-bk8-platform-overview__sub-title {
    font-size: 1.3em;
  }

  .page-resources-bk8-platform-overview__article-content {
    padding: 20px;
  }

  .page-resources-bk8-platform-overview__pros-cons {
    flex-direction: column;
  }

  .page-resources-bk8-platform-overview__floating-promo {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }

  .page-resources-bk8-platform-overview__floating-promo-icon {
    width: 25px;
    height: 25px;
  }

  .page-resources-bk8-platform-overview__floating-promo-text {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-resources-bk8-platform-overview__hero-section {
    padding: 50px 0;
  }

  .page-resources-bk8-platform-overview__hero-title {
    font-size: 1.5em;
  }

  .page-resources-bk8-platform-overview__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-bk8-platform-overview__content-wrapper {
    margin: 20px auto;
    padding: 0 10px;
  }

  .page-resources-bk8-platform-overview__sidebar {
    padding: 15px;
  }

  .page-resources-bk8-platform-overview__sidebar-title {
    font-size: 1.4em;
  }

  .page-resources-bk8-platform-overview__article-content {
    padding: 15px;
  }

  .page-resources-bk8-platform-overview__section-title {
    font-size: 1.5em;
  }

  .page-resources-bk8-platform-overview__sub-title {
    font-size: 1.2em;
  }

  .page-resources-bk8-platform-overview__article-content p {
    font-size: 0.95em;
  }

  .page-resources-bk8-platform-overview__faq-question {
    font-size: 1.1em;
  }

  .page-resources-bk8-platform-overview__floating-promo {
    bottom: 5px;
    right: 5px;
    padding: 6px 10px;
  }

  .page-resources-bk8-platform-overview__floating-promo-icon {
    width: 20px;
    height: 20px;
  }

  .page-resources-bk8-platform-overview__floating-promo-text {
    font-size: 0.8em;
  }
}