
/* ================= PARTICIPATING SCHOOLS ================= */

.schools {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;

}

/* ---------- STATS ---------- */

.schools__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.schools__stat {
  position: relative;
  padding: 24px;
}
/* LAUREL WRAPPER */
.schools__laurel {
  width: 220px;
  height: 220px;
  background: url("../assets/laurel.png.png") no-repeat center / contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.schools__stat::before,
.schools__stat::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 96px;
  background: url("../assets/laurel.png.png") no-repeat center / contain;
  opacity: 0.4;
}

.schools__stat::before {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.schools__stat::after {
  right: -8px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}

.schools__value {
  font-size: 28px;
  font-weight: 700;
  /*color: #1c1365;*/
   color: #0b2b6b;
}
.schools__label {
  font-size: 16px;
  font-weight: 600;
  color: #0b2b6b;
}

.schools__desc {
  font-size: 14px;
  color: #0b2b6b;
  opacity: 0.85;
}

/* ---------- TITLE ---------- */

.schools__title {
  font-size: 32px;
  font-weight: 700;
  color: #2b136a;
  margin-bottom: 40px;
}

/* ---------- LOGO SLIDER ---------- */

.schools__logos {
  overflow: hidden;
  outline: none;
  padding: 24px 0;
}

.schools__track {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.schools__track img {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 28px 40px;
  min-width: 260px;
  height: 110px;
  object-fit: contain;
}

/* Directions */
.schools__track--left {
  animation-name: scrollLeft;
}

.schools__track--right {
  animation-name: scrollRight;
}

/* Pause on hover / focus */
.schools__logos:hover .schools__track,
.schools__logos:focus-within .schools__track {
  animation-play-state: paused;
}

/* ---------- KEYFRAMES ---------- */

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---------- ACCESSIBILITY ---------- */

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

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 1024px) {
  .schools__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .schools {
    padding: 60px 0;
  }

  .schools__laurel {
    width: 180px;
    height: 180px;
  }

  .schools__value {
    font-size: 22px;
  }
}




@media (max-width: 768px) {
  .schools__stats {
    grid-template-columns: 1fr 1fr;
  }

  .schools__track img {
    min-width: 200px;
    height: 90px;
     padding: 22px 30px;
  }
}
