.student-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0 28px;
  overflow: visible;
}

.student-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.student-carousel-track {
  display: flex;
  gap: 32px;
  transition: transform 0.58s cubic-bezier(.5,1.9,.6,1);
  will-change: transform;
}

.student-carousel-card {
  background: #fefefe;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(9, 44, 92, 0.10);
  min-width: 220px;
  max-width: 240px;
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.student-carousel-card:hover {
  transform: scale(1.055);
  box-shadow: 0 11px 28px #092c5c14;
  z-index: 3;
}
.student-carousel-img {
  width: 100%;
  max-width: 185px;
  max-height: 185px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 9px;
  box-shadow: 0 3px 12px #092c5c25;
  transition: transform 0.35s;
}
.student-carousel-card:hover .student-carousel-img {
  transform: scale(1.09);
}
.student-carousel-info {
  width: 100%;
  padding: 6px 3px 0 4px;
  text-align: center;
}
.student-carousel-name {
  font-weight: 700;
  color: #4b2cb8;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  user-select: none;
}
.student-carousel-class {
  font-weight: 600;
  font-size: 0.91rem;
  color: #3d3d3d;
  opacity: 0.88;
}
.student-carousel-post {
  color: #448;
  font-size: 0.83rem;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.slc-title{
 font-size: 2.8rem;
  font-weight: 900;
  color: #092c5c;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.carousel-nav {
  appearance: none;
  border: none;
  outline: none;
  background: #092c5c;
  color: #ffd966;
  font-size: 2.3rem;
  border-radius: 8px;
  padding: 4px 12px;
  font-weight: bold;
  transition: background 0.22s, color 0.22s, transform 0.23s;
  position: absolute;
  top: 48%;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffd96690;
  transform: translateY(-50%);
  user-select: none;
}

.carousel-nav-left { left: -56px; }
.carousel-nav-right { right: -56px; }
.carousel-nav:hover,
.carousel-nav:focus {
  background: #ffd966;
  color: #092c5c;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.9);
}

/* Responsive */
@media (max-width: 1200px) {
  .student-carousel-card { min-width: 200px; }
  .student-carousel-img { max-width: 160px; }
}
@media (max-width: 950px) {
  .student-carousel-container { max-width: 650px; }
  .student-carousel-card { min-width: 44vw; max-width: 70vw; }
}
@media (max-width: 700px) {
  .student-carousel-container { max-width: 99vw; }
  .student-carousel-card { min-width: 90vw; max-width: 90vw; }
  .carousel-nav-left { left: -10px; }
  .carousel-nav-right { right: -10px; }
  .student-carousel-img { max-width: 92vw; }
}


