/* ==============================================
   SECTION KAMPUS SLIDER — Home Page
   Mobile-first, fully responsive
   ============================================== */

.section_kampus {
  padding: 64px 0 72px;
  background: #ffffff;
  overflow: hidden;
}

/* ---- Section header ---- */
.kampus-section__header {
  text-align: center;
  margin-bottom: 36px;
}

.kampus-section__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
}

.kampus-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

/* ---- Glide wrapper ---- */
.glide_kampus {
  position: relative;
  overflow: hidden;
}

.glide_kampus .glide__track {
  overflow: hidden;
}

/* ---- Single campus item ---- */
.kampus-slide {
  display: flex !important;
  align-items: stretch;
}

.kampus-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 6px;
  cursor: default;
}

.kampus-item__emblem {
  width: 100%;
  margin: 0;
  padding: 0;
}

.kampus-item__emblem img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.kampus-item:hover .kampus-item__emblem img {
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 18px rgba(57, 84, 164, 0.20));
}

/* ---- Footer: button ---- */
.kampus-section__footer {
  text-align: center;
  margin-top: 36px;
}

.kampus-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3954A4;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 10px;
  border: 1.5px solid #3954A4;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}

.kampus-section__btn:hover {
  background: #2e4490;
  border-color: #2e4490;
  color: #ffffff;
}

.kampus-section__btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.kampus-section__btn:hover svg {
  transform: translateX(2px);
}

/* ==============================================
   TABLET — 768px – 1023px
   ============================================== */
@media only screen and (min-width: 48rem) {
  .section_kampus {
    padding: 72px 0 80px;
  }

  .kampus-section__title {
    font-size: 14px;
  }
}

/* ==============================================
   DESKTOP — min-width 1280px
   ============================================== */
@media only screen and (min-width: 80rem) {
  .section_kampus {
    padding: 80px 0 88px;
  }

  .kampus-section__title {
    font-size: 15px;
  }

  .kampus-section__btn {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* ==============================================
   ULTRA WIDE / ZOOM-OUT EKSTREM (~33%)
   Lebar slider kembali mengikuti section lain (container)
   ============================================== */
@media only screen and (min-width: 220rem) {
  .section_kampus .glide_kampus {
    width: min(100%, var(--lp-container-width));
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--lp-space-screen-x);
    padding-right: var(--lp-space-screen-x);
  }
}