/* Advisory Section - now using slider */
.advisory-video-section {
  background-color: var(--color-bg-gray-dark);
  padding: 80px 0px;
  display: flex;
  justify-content: center;
}

.advisory-video-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.advisory-video-title {
  font-size: 3rem;
  line-height: 120%;
  color: #ffffff;
  margin: 0;
}

.advisory-video-title-br {
  display: none;
}

/* Swiper Styles */
.advisory-swiper {
  width: 100%;
  padding-bottom: 40px !important; /* Space for pagination */
}

.advisory-slide {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center; /* Added for vertical centering if needed */
  cursor: pointer;
  height: auto;
}

.advisory-slide-content {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto; /* Explicitly center */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.advisory-slide:hover .advisory-slide-content {
  background-color: rgba(255, 255, 255, 0.1);
}

.advisory-slide-image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.advisory-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisory-slide-quote {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  font-style: italic;
}

.advisory-slide-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: white; /* Fallback color */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pagination customization */
.advisory-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.advisory-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
}

@media (max-width: 767px) {
  .advisory-video-section {
    padding: 40px 0;
  }

  .advisory-video-container {
    gap: 32px;
  }

  .advisory-video-title {
    font-size: 28px;
    line-height: 130%;
  }

  .advisory-video-title-br {
    display: block;
  }

  .advisory-slide-content {
    padding: 24px;
  }

  .advisory-slide-quote {
    font-size: 1.25rem;
  }
}
