/* ── Accreditations ── */

.accreditations {
  background: #fff;
  padding: 4rem 4.2% 5rem;
  text-align: center;
}

.accreditations__heading {
  font-size: clamp(1.75rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #025e90;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.accreditations__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
  align-items: center;
  justify-items: center;
}

.accreditations__logo {
  width: 215px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accreditations__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Marquee — hidden on desktop, shown on tablet/mobile */
.accreditations__marquee {
  display: none;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.accreditations__marquee::before,
.accreditations__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  z-index: 1;
  pointer-events: none;
}

.accreditations__marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.accreditations__marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.accreditations__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}

.accreditations__marquee-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.accreditations__marquee-logos img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
