/* =============================================
   GRUPO SALVADOR — CSS EDUCACIÓN TIU (Phase 6)
   Identidad navy, distinta del rojo corporativo.
   Placeholders, botón outline y carrusel vienen de gs-base.css
   ============================================= */

/* ── HERO ACADÉMICO ── */
.gs-edu-hero {
  background: #fff;
  padding: 48px 0 40px;
}
.gs-edu-hero__inner {
  display: grid;
  grid-template-columns: 210px 1fr 300px;
  gap: 32px;
  align-items: center;
}
.gs-edu-hero__seal {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.gs-edu-hero__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.gs-edu-hero__sub {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}
.gs-edu-hero__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  display: block;
}

/* ── 3 PROGRAMAS ── */
.gs-programas { background: #fff; padding: 24px 0 56px; }
.gs-programas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gs-programa {
  border: 1.5px solid #E5E5E5;
  border-radius: 12px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.gs-programa:hover {
  box-shadow: 0 4px 22px rgba(0,0,0,.08);
  border-color: #d0d0d0;
}
.gs-programa__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  text-align: center;
}
.gs-programa__title--navy { color: var(--gs-navy); }
.gs-programa__title--gold { color: var(--gs-gold); }

.gs-programa__list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.gs-programa__list li {
  font-size: 14.5px;
  color: #555;
  line-height: 1.55;
  padding-left: 16px;
  margin-bottom: 12px;
  position: relative;
}
.gs-programa__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

.gs-programa__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity .2s;
}
.gs-programa__cta:hover { opacity: .75; }
.gs-programa__cta--red  { color: var(--gs-red, #8B1A1A); }
.gs-programa__cta--gold { color: var(--gs-gold); }
.gs-programa__cta--navy { color: var(--gs-navy); }

/* ── CARRUSEL EGRESADOS ── */
.gs-egresados { background: #fff; padding: 24px 0 64px; }
.gs-egresados__title {
  text-align: center;
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
}
.gs-egresado-card {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.gs-egresado-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-egresado-card__badge {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #E1306C;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gs-egresado-card__badge--fb { background: #1877F2; }

/* ── FOOTER NAVY (override solo en esta página) ── */
.gs-footer { background: var(--gs-navy-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gs-edu-hero__inner {
    grid-template-columns: 170px 1fr;
    gap: 24px;
  }
  .gs-edu-hero__media {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }
  .gs-programas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .gs-edu-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .gs-edu-hero__seal { max-width: 160px; }
  .gs-edu-hero__media {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }
  .gs-edu-hero__title br,
  .gs-edu-hero__sub br { display: none; }
  .gs-programas__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gs-edu-hero__title { font-size: 23px; }
  .gs-edu-hero__sub { font-size: 15px; }
  .gs-edu-hero__seal { max-width: 130px; }
}
