/* Partners — purple + orange accents */

.edu-home-app .edu-accreditation-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 3vw, 32px);
  margin: 0;
  background: transparent;
  direction: inherit;
}

.edu-home-app .edu-accreditation-marquee__head {
  direction: inherit;
  margin: 0 auto 24px;
  max-width: 1200px;
  text-align: center;
  justify-content: center;
}

.edu-home-app .edu-accreditation-marquee__head > div {
  text-align: center;
}

.edu-home-app .edu-accreditation-marquee__head h2 {
  margin: 0;
  color: #0B1426;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
}

.edu-home-app .edu-accreditation-marquee__head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0B1426, #f97316);
}

.edu-home-app .edu-accreditation-marquee__glyph {
  display: none;
}

.edu-home-app .edu-accreditation-marquee__hint,
.edu-home-app .edu-accreditation-marquee__disclaimer {
  display: none;
}

.edu-home-app .edu-accreditation-marquee .accreditation-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  animation: none;
}

.edu-home-app .edu-accreditation-marquee .accreditation-logo-pill {
  flex: 0 1 auto;
  min-width: 110px;
  height: 56px;
  padding: 8px 16px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid #D8DEE8;
  box-shadow: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.edu-home-app .edu-accreditation-marquee .accreditation-logo-pill:hover {
  border-color: #f97316;
  box-shadow: none;
  transform: translateY(-1px);
}

.edu-home-app .edu-accreditation-marquee .accreditation-logo-pill img {
  max-height: 40px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .edu-home-app .edu-accreditation-marquee {
    direction: ltr !important;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 6px 0 !important;
    overflow: hidden;
  }

  .edu-home-app .edu-accreditation-marquee .accreditation-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: visible !important;
    gap: 10px !important;
    animation: eduAccreditationMarquee 28s linear infinite !important;
    justify-content: flex-start !important;
    scroll-snap-type: none !important;
    will-change: transform;
  }

  .edu-home-app .edu-accreditation-marquee .accreditation-logo-pill {
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 96px;
    height: 48px;
    padding: 6px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    scroll-snap-align: unset;
  }

  .edu-home-app .edu-accreditation-marquee .accreditation-logo-pill img {
    display: block;
    width: auto;
    max-width: 88px;
    max-height: 36px;
    margin: 0 auto;
    object-fit: contain;
  }

  @media (hover: hover) and (pointer: fine) {
    .edu-home-app .edu-accreditation-marquee:hover .accreditation-track {
      animation-play-state: paused;
    }
  }
}

@keyframes eduAccreditationMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
