/* style/blog-understanding-bc1-platform.css */
:root {
  --bc1-background-color: #08160F;
  --bc1-card-bg: #11271B;
  --bc1-text-main: #F2FFF6;
  --bc1-text-secondary: #A7D9B8;
  --bc1-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bc1-border-color: #2E7A4E;
  --bc1-glow-color: #57E38D;
  --bc1-gold-color: #F2C14E;
  --bc1-divider-color: #1E3A2A;
  --bc1-deep-green: #0A4B2C;
}

.page-blog-understanding-bc1-platform {
  background-color: var(--bc1-background-color);
  color: var(--bc1-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-understanding-bc1-platform__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 40px;
  background-color: var(--bc1-background-color);
}

.page-blog-understanding-bc1-platform__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-understanding-bc1-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-understanding-bc1-platform__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-understanding-bc1-platform__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--bc1-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-understanding-bc1-platform__intro-text {
  font-size: 1.1em;
  color: var(--bc1-text-secondary);
  margin-bottom: 30px;
}

.page-blog-understanding-bc1-platform__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-understanding-bc1-platform__btn-primary,
.page-blog-understanding-bc1-platform__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-understanding-bc1-platform__btn-primary {
  background: var(--bc1-button-gradient);
  color: var(--bc1-text-main);
  border: 2px solid transparent;
}

.page-blog-understanding-bc1-platform__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-understanding-bc1-platform__btn-secondary {
  background: transparent;
  color: var(--bc1-glow-color);
  border: 2px solid var(--bc1-glow-color);
}

.page-blog-understanding-bc1-platform__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: var(--bc1-text-main);
}

.page-blog-understanding-bc1-platform__section {
  padding: 60px 20px;
  background-color: var(--bc1-background-color);
}

.page-blog-understanding-bc1-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-understanding-bc1-platform__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--bc1-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-understanding-bc1-platform__subsection-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: var(--bc1-glow-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-understanding-bc1-platform__paragraph {
  font-size: 1em;
  color: var(--bc1-text-secondary);
  margin-bottom: 20px;
}

.page-blog-understanding-bc1-platform__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-understanding-bc1-platform__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--bc1-text-secondary);
}

.page-blog-understanding-bc1-platform__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--bc1-glow-color);
  font-weight: bold;
}

.page-blog-understanding-bc1-platform__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-understanding-bc1-platform__feature-card {
  background-color: var(--bc1-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--bc1-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-understanding-bc1-platform__feature-icon {
  width: 100%; /* Ensure image fills card width */
  height: auto;
  max-height: 200px; /* Max height to prevent overly tall images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-blog-understanding-bc1-platform__feature-title {
  font-size: 1.3em;
  color: var(--bc1-text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-understanding-bc1-platform__feature-description {
  font-size: 0.95em;
  color: var(--bc1-text-secondary);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-understanding-bc1-platform {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important;
  }

  .page-blog-understanding-bc1-platform__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }

  .page-blog-understanding-bc1-platform__main-title {
    font-size: 2em;
  }

  .page-blog-understanding-bc1-platform__intro-text {
    font-size: 1em;
  }

  .page-blog-understanding-bc1-platform__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-understanding-bc1-platform__btn-primary,
  .page-blog-understanding-bc1-platform__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-understanding-bc1-platform__section,
  .page-blog-understanding-bc1-platform__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-understanding-bc1-platform__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-understanding-bc1-platform__subsection-title {
    font-size: 1.3em;
  }

  .page-blog-understanding-bc1-platform__feature-card {
    padding: 20px;
  }

  .page-blog-understanding-bc1-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-understanding-bc1-platform__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
}