/* ========================
   Customer Stack Hub Section
   Mobile-First Approach
   ======================== */

.customer-stack-hub-header-section {
  gap: var(--space-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-22);
}

.customer-stack-hub-left-content-section {
  padding-right: var(--space-20);
  display: flex;
  flex-direction: column;
  gap: var(--gap-40);
}

.customer-stack-hub-left-content-title {
  font-weight: var(--font-weight-regular);
  line-height: normal;
}

.customer-stack-hub-left-content-title strong,
.customer-stack-hub-left-content-title b {
  font-weight: var(--font-weight-bold);
  color: var(--bs-success);
}

.customer-stack-hub-left-content-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-9);
}

.customer-stack-hub-left-content-list li {
  display: flex;
  gap: var(--space-5);
  color: var(--bs-primary-50);
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: var(--space-9);
  border-bottom: 0.0625rem solid rgba(var(--bs-primary-200-rgb), 0.5);
}

.customer-stack-hub-left-content-list li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  background-color: var(--bs-primary-50);
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='11' stroke='black' stroke-width='2'/%3E%3Cpath d='M7.5 12L10.5 15L16.5 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='11' stroke='black' stroke-width='2'/%3E%3Cpath d='M7.5 12L10.5 15L16.5 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.customer-stack-hub-hero-media {
  height: 100%;
  width: 100%;
}

.customer-stack-hub-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Wrapper - Container for video with proper aspect ratio */
.customer-stack-hub-video-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--bs-black);
  border-radius: var(--radius-2xl);
}

/* Customer Stack Hub Video Container - Full width, auto height */
.customer-stack-hub-video-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.customer-stack-hub-video-container .video-wrapper {
  width: 100%;
  height: auto;
}

.customer-stack-hub-video-container .video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
  background-color: var(--bs-black);
  display: block;
  border-radius: var(--radius-2xl);
}
