.about-overview-v4__media {
    min-width: 0;
    overflow: hidden;
}

.overview-image-hover {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.overview-image-hover:hover {
    transform: scale(1.05);
}

/* awards — animated SVG mesh card backgrounds */
.awards-mesh__canvas {
  isolation: isolate;
}

/* BS-only canvas gradient (TW uses @sem gradient layer) */
.awards-mesh__canvas-bg {
  background: linear-gradient(
    to bottom right,
    color-mix(in srgb, var(--bs-primary) 55%, black),
    color-mix(in srgb, var(--bs-primary) 42%, black),
    var(--bs-primary)
  );
}

.dark .awards-mesh__canvas-bg,
[data-bs-theme="dark"] .awards-mesh__canvas-bg {
  background: linear-gradient(
    to bottom right,
    color-mix(in srgb, var(--bs-primary) 10%, black),
    color-mix(in srgb, var(--bs-primary) 22%, black),
    color-mix(in srgb, var(--bs-primary) 38%, black)
  );
}

.awards-mesh__svg {
  display: block;
}

.awards-mesh__orb {
  transform-origin: center;
  transform-box: fill-box;
}

.awards-mesh__orb--a {
  animation: awards-mesh-orb-drift-a 9s ease-in-out infinite;
}

.awards-mesh__orb--b {
  animation: awards-mesh-orb-drift-b 11s ease-in-out infinite;
  animation-delay: 1.5s;
}

.awards-mesh__orb--c {
  animation: awards-mesh-orb-pulse 6s ease-in-out infinite;
  animation-delay: 0.8s;
}

.awards-mesh__wave {
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
}

.awards-mesh__wave--a {
  animation: awards-mesh-wave-slide 14s linear infinite;
}

.awards-mesh__wave--b {
  animation: awards-mesh-wave-slide 18s linear infinite reverse;
  animation-delay: 2s;
}

.awards-mesh__svg--1 .awards-mesh__orb--a {
  animation-delay: 0.5s;
}

.awards-mesh__svg--1 .awards-mesh__wave--a {
  animation-duration: 16s;
}

.awards-mesh__svg--2 .awards-mesh__orb--b {
  animation-delay: 2.5s;
}

.awards-mesh__svg--2 .awards-mesh__wave--b {
  animation-duration: 12s;
}

.awards-mesh__svg--3 .awards-mesh__orb--c {
  animation-delay: 1.2s;
}

@keyframes awards-mesh-orb-drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.08);
  }
}

@keyframes awards-mesh-orb-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-14px, 8px) scale(1.06);
  }
}

@keyframes awards-mesh-orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.75;
  }
}

@keyframes awards-mesh-wave-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40px);
  }
}

/* team v28 — neon mosaic tiles + diagonal brand marquees */
.team-mosaic__diag-scene {
  overflow: hidden;
}

.team-mosaic__diag-strip {
  position: absolute;
  left: -25%;
  width: 150%;
  overflow: hidden;
  pointer-events: none;
}

.team-mosaic__diag-strip--a {
  top: 12%;
  transform: rotate(-14deg);
}

.team-mosaic__diag-strip--b {
  top: 36%;
  transform: rotate(10deg);
}

.team-mosaic__diag-strip--c {
  top: 58%;
  transform: rotate(-8deg);
}

.team-mosaic__diag-strip--d {
  top: 78%;
  transform: rotate(16deg);
}

.team-mosaic__diag-rail {
  display: inline-flex;
  will-change: transform;
}

.team-mosaic__diag-strip--a .team-mosaic__diag-rail {
  animation: team-mosaic-diag-run 38s linear infinite;
}

.team-mosaic__diag-strip--b .team-mosaic__diag-rail {
  animation: team-mosaic-diag-run-rev 32s linear infinite;
}

.team-mosaic__diag-strip--c .team-mosaic__diag-rail {
  animation: team-mosaic-diag-run 44s linear infinite;
  animation-delay: 4s;
}

.team-mosaic__diag-strip--d .team-mosaic__diag-rail {
  animation: team-mosaic-diag-run-rev 36s linear infinite;
  animation-delay: 2s;
}

.team-mosaic__diag-chunk {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1;
  flex-shrink: 0;
}

@keyframes team-mosaic-diag-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes team-mosaic-diag-run-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.team-mosaic__item {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
}

.team-mosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-mosaic__shade {
  pointer-events: none;
}

.team-mosaic__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg, var(--bs-primary), transparent, var(--bs-primary));
  opacity: 0;
  z-index: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.team-mosaic__item:hover .team-mosaic__glow {
  opacity: 0.35;
  filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  .team-mosaic__diag-rail {
    animation: none;
  }
}

.sidebar-dot-card-timeline__line {
    width: 2px;
    left: 1rem;
}

@media (min-width: 768px) {
    .sidebar-dot-card-timeline__line {
        left: 2rem;
    }
}

.sidebar-dot-card-timeline__dot {
    width: 1rem;
    height: 1rem;
    left: 0.5rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .sidebar-dot-card-timeline__dot {
        left: 1.5rem;
        transform: translateX(-0.5rem);
    }
}

.sidebar-dot-card-timeline__card {
    margin-left: 0;
}

@media (min-width: 768px) {
    .sidebar-dot-card-timeline__card {
        margin-left: 4rem;
    }
}

