﻿/* ── Student Life page styles ─────────────────────────────── */

/* ─── ACTIVITY CARD GRID ─────────────────────────────────── */
.sl-grid-section {
  padding: 80px;
  background: var(--white);
}
.sl-grid-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 10px;
}
.sl-grid-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 52px;
}
.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sl-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(62, 66, 150, 0.1);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(62, 66, 150, 0.18);
}
.sl-card-img {
  position: relative;
  overflow: hidden;
}
.sl-card-img .img-wrap {
  aspect-ratio: 16/9;
  border-radius: 0;
  background: #c8cce0;
}
.sl-card-img .img-wrap img {
  object-fit: cover;
  object-position: center;
}
.sl-card-body {
  padding: 24px 22px 26px;
}
.sl-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.sl-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sl-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ─── TEXT SECTIONS ──────────────────────────────────────── */
.sl-text-section {
  padding: 80px;
  background: #f4f5fb;
}
.sl-text-section--white {
  background: var(--white);
}
.sl-text-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.sl-text-inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  line-height: 1.25;
}
.sl-text-inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.62;
  margin-bottom: 16px;
}
.sl-text-inner p:last-child {
  margin-bottom: 0;
}
.sl-quote {
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  border-left: 4px solid var(--blue);
  padding-left: 20px;
  text-align: left;
  margin-top: 28px;
  line-height: 1.7;
}
