/* About Us — public page layout & team section */

.au-page {
  --au-brand: #4356a3;
  --au-brand-light: #2aabe2;
  --au-brand-soft: #e8f4fc;
  --au-text: #1e293b;
  --au-muted: #64748b;
  --au-line: #e2e8f0;
  --au-bg: #f4f8fb;
  --au-radius: 16px;
  color: var(--au-text);
}

.au-page .container {
  max-width: 1080px;
}

/* Banner overlay */
.au-banner.PageBanner {
  max-height: 360px;
}

.au-banner.PageBanner .card-img {
  max-height: 360px;
  filter: brightness(0.92);
}

.au-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 100%);
  text-align: center;
}

.au-banner__kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.au-banner__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* Breadcrumb */
.au-breadcrumb {
  padding: 14px 0 0;
}

.au-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.au-breadcrumb a {
  color: var(--au-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.au-breadcrumb a:hover {
  color: var(--au-brand-light);
}

.au-breadcrumb li + li::before {
  content: '/';
  margin-left: 6px;
  color: #cbd5e1;
}

.au-breadcrumb li[aria-current='page'] {
  color: var(--au-brand);
  font-weight: 700;
}

/* Intro */
.au-intro {
  padding: 36px 0 12px;
}

.au-intro__inner {
  max-width: 760px;
}

.au-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--au-brand-soft);
  color: var(--au-brand);
  font-size: 12px;
  font-weight: 800;
}

.au-title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--au-text);
}

.au-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--au-muted);
  text-align: justify;
}

/* Pillars */
.au-pillars {
  padding: 20px 0 8px;
}

.au-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.au-pillar {
  padding: 22px 20px;
  border-radius: var(--au-radius);
  border: 1px solid var(--au-line);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 45, 82, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.au-pillar:hover {
  box-shadow: 0 10px 28px rgba(15, 45, 82, 0.08);
  transform: translateY(-2px);
}

.au-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f4fc, #dbeafe);
  color: var(--au-brand);
}

.au-pillar__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--au-text);
}

.au-pillar__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--au-muted);
}

/* About panel */
.au-about {
  padding: 28px 0;
}

.au-about__panel {
  padding: 28px 28px 24px;
  border-radius: var(--au-radius);
  border: 1px solid var(--au-line);
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
  box-shadow: 0 4px 20px rgba(15, 45, 82, 0.05);
}

.au-about__panel h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--au-brand);
}

.au-about__panel p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--au-muted);
  text-align: justify;
}

.au-about__panel p:last-of-type {
  margin-bottom: 0;
}

.au-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  background: var(--au-brand-soft);
}

.au-address__icon {
  flex-shrink: 0;
  color: var(--au-brand);
  margin-top: 2px;
}

.au-address__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--au-text);
}

.au-address__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--au-brand);
}

/* Team section */
.au-team {
  padding: 36px 0 48px;
  background: var(--au-bg);
  margin-top: 12px;
}

.au-section-head {
  text-align: center;
  margin-bottom: 32px;
}

.au-section-head h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--au-brand);
}

.au-section-head p {
  margin: 0 auto;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--au-muted);
}

.au-section-head::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--au-brand-light), var(--au-brand));
}

/* Team grid (hydrated) */
.sp-team-section {
  margin: 0 0 40px;
}

.sp-team-section:last-child {
  margin-bottom: 0;
}

.sp-team-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.sp-team-section__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--au-text);
  white-space: nowrap;
}

.sp-team-section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--au-line), transparent);
}

.sp-team-grid {
  display: grid;
  gap: 20px;
  margin: 0;
}

.sp-team-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.sp-team-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sp-team-card {
  position: relative;
  text-align: center;
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius);
  padding: 28px 18px 22px;
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.sp-team-card:hover {
  border-color: #c7daf2;
  box-shadow: 0 12px 32px rgba(15, 45, 82, 0.09);
  transform: translateY(-3px);
}

.sp-team-card__photo-wrap {
  position: relative;
  width: 132px;
  margin: 0 auto 16px;
}

.sp-team-card__img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #dbeafe, 0 8px 24px rgba(15, 45, 82, 0.1);
}

.sp-team-card__placeholder {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8f4fc, #dbeafe);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #dbeafe;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--au-brand);
  letter-spacing: -0.02em;
}

.sp-team-card__linkedin {
  position: absolute;
  bottom: 2px;
  left: 2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(10, 102, 194, 0.35);
  transition: transform 0.15s;
  text-decoration: none;
}

.sp-team-card__linkedin:hover {
  transform: scale(1.08);
  color: #fff;
}

.sp-team-card__linkedin-icon {
  width: 16px;
  height: 16px;
}

.sp-team-card__name {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--au-text);
}

.sp-team-card__role {
  font-size: 13.5px;
  color: var(--au-muted);
  margin: 0;
  line-height: 1.65;
}

.sp-empty,
.sp-loading {
  text-align: center;
  color: var(--au-muted);
  padding: 32px 20px;
  font-size: 14px;
}

.sp-team-skeleton {
  display: grid;
  gap: 20px;
}

.sp-team-skeleton--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin: 0 auto;
}

.sp-team-skeleton--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sp-team-skeleton__card {
  height: 220px;
  border-radius: var(--au-radius);
  background: linear-gradient(90deg, #eef2f7 0%, #f8fafc 50%, #eef2f7 100%);
  background-size: 200% 100%;
  animation: au-shimmer 1.2s ease-in-out infinite;
}

@keyframes au-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* CTA strip */
.au-cta {
  padding: 0 0 48px;
  background: var(--au-bg);
}

.au-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--au-radius);
  background: linear-gradient(135deg, var(--au-brand) 0%, #364485 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(67, 86, 163, 0.25);
}

.au-cta__copy h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.au-cta__copy p {
  margin: 0;
  font-size: 13.5px;
  opacity: 0.9;
  line-height: 1.6;
}

.au-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.au-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.au-btn--white {
  background: #fff;
  color: var(--au-brand);
}

.au-btn--white:hover {
  background: #f0f7ff;
  color: var(--au-brand);
  transform: translateY(-1px);
}

.au-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.au-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .au-pillars__grid {
    grid-template-columns: 1fr;
  }

  .sp-team-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-team-skeleton--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .au-about__panel {
    padding: 20px 18px;
  }

  .au-cta__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .au-cta__actions {
    flex-direction: column;
  }

  .au-btn {
    width: 100%;
  }

  .sp-team-grid--2,
  .sp-team-grid--3 {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .sp-team-skeleton--2,
  .sp-team-skeleton--3 {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}
