/* =========================================================
   ALUMNI HOME (4 kotak)
   - grid 2x2
   - foto kiri + komentar kanan
   ========================================================= */

.alumniHome{ margin: 0; }

.alumniHome__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 12px;
}

.alumniHome__title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #071f44;
}

.alumniHome__more{
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: #0f3c82;
}

.alumniHome__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Card */
.alumniCard{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: stretch;

  text-decoration: none;
  color: inherit;

  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12,28,58,.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.alumniCard:hover{
  transform: translateY(-2px);
  border-color: rgba(15,60,130,.18);
  box-shadow: 0 14px 30px rgba(12,28,58,.10);
}

.alumniCard__photo{
  background: rgba(7,31,68,.06);
}

.alumniCard__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.alumniCard__body{
  padding: 12px 12px 12px 0;
  min-width: 0;
}

.alumniCard__name{
  font-weight: 900;
  font-size: 14px;
  color: #071f44;
  line-height: 1.2;
}

.alumniCard__meta{
  margin-top: 3px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(7,31,68,.62);
}

.alumniCard__quote{
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(7,31,68,.78);
  line-height: 1.45;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.alumniCard__cta{
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 900;
  color: #0f3c82;
}

/* Responsive */
@media (max-width: 980px){
  .alumniHome__grid{ grid-template-columns: 1fr; }
  .alumniCard{ grid-template-columns: 110px 1fr; }
}

@media (max-width: 560px){
  .alumniCard{ grid-template-columns: 84px 1fr; }
  .alumniCard__body{ padding: 10px 10px 10px 0; }
}
