/* ============================================================
   BLOCK: About Page
   Styles for the About Us page sections.
   ============================================================ */

/* --- Brand tokens (shared with homepage / product pages) --- */
:root {
  --vox-purple: #341C4C;
  --vox-lilac: #95569E;
  --vox-warm-white: #FAFAFA;
  --vox-light-gray: #F3F4F6;
  --vox-cool-gray: #6B7280;
  --vox-charcoal: #1F2937;
  --vox-gray-200: #E0E0E0;
  --vox-white: #FFFFFF;
}

/* --- About hero title — match product-page hero size --- */
.hp-hero35 .hp-hero35__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

/* Show both speakers in the UXDX event card image */
.hp-hero35__card-img[alt*="UXDX"] {
  object-position: 50% 30%;
}

/* --- Hero carousel --- */
.about-hero {
  background: #f7f4fa;
  padding: 4rem 0;
}

.about-hero__slides {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  max-width: 56rem;
  margin: 0 auto;
}

.about-hero__slide {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
}

.about-hero__slide.is-active {
  display: block;
}

.about-hero__slide h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #341c4c;
  margin: 0 0 1rem;
}

.about-hero__slide p {
  font-size: 1.0625rem;
  color: #5b666f;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.about-hero__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4cade;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.about-hero__dot.is-active {
  background: #95569e;
}

/* --- Company info (front-door card style) --- */
.about-info {
  background: var(--vox-warm-white, #FAFAFA);
  padding: 5rem 0;
}

.about-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-info__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.about-info__card {
  background: var(--vox-white, #FFFFFF);
  border: 1px solid var(--vox-gray-200, #E0E0E0);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.about-info__card:hover {
  border-color: var(--vox-lilac, #95569E);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(149, 86, 158, 0.1);
}

.about-info__icon {
  width: 56px;
  height: 56px;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vox-light-gray, #F3F4F6);
  border-radius: 12px;
}

.about-info__icon svg {
  width: 28px;
  height: 28px;
  color: #95569E;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-info .about-info__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--vox-purple, #341C4C);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.about-info__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--vox-cool-gray, #6B7280);
  margin: 0;
}

/* --- Values (mirrors hp-platform journey style) --- */
.about-values {
  background: var(--vox-light-gray, #F3F4F6);
  padding: 3.5rem 0;
}

.about-values__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.about-values__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vox-lilac, #95569E);
  margin: 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-values__grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin: 0 auto;
  }
}

.about-values__card {
  background: var(--vox-white, #FFFFFF);
  border: 1px solid var(--vox-gray-200, #E0E0E0);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.about-values__card:hover {
  border-color: var(--vox-lilac, #95569E);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(149, 86, 158, 0.1);
}

.about-values__icon {
  width: 56px;
  height: 56px;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vox-light-gray, #F3F4F6);
  border-radius: 12px;
}

.about-values__icon img {
  width: 28px;
  height: 28px;
}

.about-values__card .about-values__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--vox-purple, #341C4C);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.about-values__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--vox-cool-gray, #6B7280);
  margin: 0;
}

/* --- Microsoft quote --- */
.about-quote {
  padding: 4rem 0;
  text-align: center;
}

.about-quote__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.about-quote__text {
  font-size: 1.375rem;
  font-weight: 500;
  color: #341c4c;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 1.5rem;
}

.about-quote__author {
  font-size: 1rem;
  font-weight: 700;
  color: #341c4c;
  margin: 0;
}

.about-quote__role {
  font-size: 0.875rem;
  color: #5b666f;
  margin: 0.25rem 0 0;
}

/* --- Advisory board (reuses .about-team card styles, no LinkedIn) --- */
.about-team__subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--vox-cool-gray, #6B7280);
  max-width: 42rem;
  margin: 0.5rem auto 0;
}

/* --- Hero slide images --- */
.about-hero__slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* --- Testimonial card (two-column with card) --- */
.about-testimonial {
  padding: 5rem 0;
  background: var(--vox-light-gray, #F3F4F6);
}

.about-testimonial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-testimonial__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left — content */
.about-testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-testimonial__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vox-charcoal, #1F2937);
  border: 1px solid var(--vox-gray-200, #E0E0E0);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}

.about-testimonial__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-testimonial .about-testimonial__heading {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--vox-purple, #341C4C);
  line-height: 1.3;
  margin: 0;
}

.about-testimonial__desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--vox-cool-gray, #6B7280);
  margin: 0;
}

/* Right — card wrapper */
.about-testimonial__card-wrap {
  padding-top: 2.5rem;
}

.about-testimonial__card {
  position: relative;
  background: var(--vox-white, #FFFFFF);
  border: 1px solid var(--vox-gray-200, #E0E0E0);
  border-radius: 16px;
  padding: 3rem 3rem 2.5rem;
  text-align: center;
}

/* Logo — overlapping circle at top */
.about-testimonial__logo-wrap {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--vox-white, #FFFFFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-testimonial__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-testimonial__name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--vox-purple, #341C4C);
  margin: 1rem 0 0.25rem;
}

.about-testimonial__role {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vox-lilac, #95569E);
  margin: 0 0 1.5rem;
}

.about-testimonial__quote-text {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--vox-purple, #341C4C);
  margin: 0 auto 2rem;
  max-width: 36rem;
  border: none;
  padding: 0;
}

.about-testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.about-testimonial__stars svg {
  width: 24px;
  height: 24px;
  fill: #F5A623;
}

/* --- Team cards (shadcn team-section-01 style) --- */
.about-team {
  padding: 5rem 0;
  background: var(--vox-warm-white, #FAFAFA);
}

.about-team__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-team .about-team__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--vox-purple, #341C4C);
  margin: 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .about-team__grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin: 0 auto;
  }
}

.about-team__card {
  background: var(--vox-white, #FFFFFF);
  border: 1px solid var(--vox-gray-200, #E0E0E0);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.about-team__card:hover {
  border-color: var(--vox-lilac, #95569E);
}

.about-team__img-wrap {
  background: var(--vox-light-gray, #F3F4F6);
  display: flex;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.about-team__img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.about-team__body {
  padding: 1.5rem;
}

.about-team__card .about-team__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vox-purple, #341C4C);
  margin: 0 0 0.75rem;
}

.about-team__sep {
  border: none;
  border-top: 1px solid var(--vox-gray-200, #E0E0E0);
  margin: 0 0 0.75rem;
}

.about-team__role {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vox-lilac, #95569E);
  margin: 0 0 0.75rem;
}

.about-team__social {
  display: inline-flex;
  color: var(--vox-cool-gray, #6B7280);
  transition: color 0.2s ease;
}

.about-team__social:hover {
  color: var(--vox-purple, #341C4C);
}

.about-team__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .about-hero__slide {
    padding: 2rem 1.25rem;
  }
  .about-hero__slide h2 {
    font-size: 1.375rem;
  }
  .about-values__header h2 {
    font-size: 1.5rem;
  }
}
