/* =========================
   SCHOOLS PAGE (page-specific only)
   Global header/nav/footer/fonts are handled by /styles.css
========================= */

/* MAP SECTION */
.schools-map-section{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  padding: var(--section-y) 0;
}

.map-item{
  text-align:center;
  width: min(560px, 100%);
}

.section-title{
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.map-link{
  text-decoration:none;
  display:inline-block;
  width:100%;
}

/* SAME SIZE frame for both images */
.map-frame{
  width:100%;
  height:320px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 3px 10px rgba(0,0,0,0.15);
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:transform 0.2s ease;
}

.map-frame:hover{
  transform: translateY(-4px);
}

/* NO distortion */
.map-frame img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position:center;
  padding:14px;
}

/* NEWLY ADDED SCHOOLS */
.schools-featured{
  padding: var(--section-y) 0;
  text-align:center;
  background:#f1f8f8;
  border-radius: 12px;
}

.schools-featured h2{
  color: var(--teal);
  margin: 0 0 20px;
}

.schools-listing{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.schools-card{
  background:#fff;
  padding:18px;
  width:260px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.schools-card h3{
  margin:0 0 6px;
  color: var(--teal);
}

.schools-card p{
  margin:0;
  color:#666;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* SPOTLIGHT */
.schools-spotlight{
  padding: var(--section-y) 0;
  text-align:center;
}

.schools-spotlight h2{
  color: var(--teal);
  margin: 0 0 16px;
}

.spotlight-box{
  max-width: 900px;
  margin: 0 auto;
  background: var(--teal);
  color: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.spotlight-box p{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:600;
  letter-spacing:.2px;
}

/* MOBILE */
@media (max-width: 768px){
  .schools-featured{
    padding: var(--section-y-sm) 14px;
  }

  .schools-map-section{
    padding: var(--section-y-sm) 0;
  }
}
