/* =========================================
   FEATURE HERO
========================================= */
.feature-hero {
  background: var(--bg-secondary);
  /* Same subtle gray bg from the mockup */
}

.feature-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .feature-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--accent-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.current {
  color: var(--text-main);
}

.feature-hero-content h1 {
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.feature-hero-desc {
  color: var(--text-main);
  margin-bottom: 32px;
  font-size: 18px;
}

.feature-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-benefits-list li {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-benefits-list li i {
  color: var(--accent-primary);
  /* Assuming green or primary color based on design */
  font-size: 1.2rem;
}

/* Fallback button styles in case global btn doesn't apply */
.btn-outline-dark {
  background: var(--text-main);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
}

.video-placeholder {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.video-play-icon {
  font-size: 4rem;
  color: #94a3b8;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-icon {
  transform: scale(1.1);
  color: var(--text-main);
}

.feature-hero-media {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  padding: 0;
}

.feature-hero-media .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.feature-hero-media .video-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-hero-media .video-container iframe,
.feature-hero-media .video-container video,
.feature-hero-media .video-container .wp-video {
  max-width: 100%;
  max-height: 100%;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* Reset for the placeholder to maintain sizing */
.feature-hero-media .video-placeholder {
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
}

/* =========================================
   CAPABILITIES SECTIONS
========================================= */
.capabilities-wrapper {
  background: #ffffff;
}

.capability-section {
  padding: 60px 0;
}

.capability-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.capability-media {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  padding: 20px;
}

.capability-media .content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

@media (max-width: 991px) {
  .capability-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  /* On mobile, images usually sit above text */
  .capability-container.layout-text-left .capability-media {
    order: -1;
  }
}


.image-placeholder {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.image-placeholder i {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 12px;
}




/* =========================================
   PRE-FOOTER SEO
========================================= */
.feature-pre-footer {
  background: #d6deea;
  color: var(--text-dark);
}

.feature-pre-footer p {
  margin-bottom: 8px;
}

.copyright-text {
  margin-top: 32px;
  color: var(--text-muted);
}