/* ============================================
   Alumni Page - alumni_css_1.css
   people_4.cssÀÇ .section, .section-header µî °øÀ¯
   ============================================ */




/* ===== Filter Bar ===== */
#wrap .alumni-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}


#wrap .alumni-filter input[type="text"],
#wrap .alumni-filter select {
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fafafa;
  color: #333;
  flex: 1;
  min-width: 0;
}


#wrap .alumni-filter input[type="text"]:focus,
#wrap .alumni-filter select:focus {
  outline: none;
  border-color: #0d47a1;
}


#wrap .alumni-filter #filter-button {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  background-color: #0d47a1;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}


#wrap .alumni-filter #filter-button:hover {
  background-color: #1565c0;
}




/* ===== Alumni Cards ===== */
#wrap .section .alumni-block {
  position: relative;
  margin-bottom: 16px;
  padding: 20px 20px 20px 28px;
  background-color: #fff;
  border: 1px solid #eee;
  border-left: 3px solid #0d47a1;
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
}


#wrap .section .alumni-block:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}




/* --- Degree Badge --- */
#wrap .alumni-degree-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}


#wrap .alumni-degree-badge.phd {
  background-color: #e3f2fd;
  color: #0d47a1;
}


#wrap .alumni-degree-badge.ms {
  background-color: #e8f5e9;
  color: #1b5e20;
}




/* --- Name --- */
#wrap .section .alumni-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px 0;
}




/* --- Details --- */
#wrap .section .alumni-detail {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 2px 0;
}




/* --- Thesis --- */
#wrap .section .alumni-thesis {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin: 4px 0 2px;
  font-style: italic;
}


#wrap .section .alumni-thesis-en {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0 0 4px;
}




/* --- Divider (for dual degree) --- */
#wrap .section .alumni-divider {
  font-size: 12px;
  color: #ccc;
  margin: 10px 0;
  text-align: center;
  letter-spacing: 2px;
}




/* --- Graduation Year --- */
#wrap .section .graduation-year {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}




/* --- Year Divider (between groups) --- */
#wrap .year-divider {
  font-size: 18px;
  font-weight: 700;
  color: #0d47a1;
  margin: 30px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #0d47a1;
}




/* ===== Responsive ===== */
@media (max-width: 768px) {
  #wrap .alumni-filter {
    flex-direction: column;
    gap: 8px;
  }


  #wrap .alumni-filter input[type="text"],
  #wrap .alumni-filter select,
  #wrap .alumni-filter #filter-button {
    width: 100%;
  }


  #wrap .section .alumni-block {
    padding: 16px 16px 16px 20px;
  }


  #wrap .section .alumni-name {
    font-size: 16px;
  }
}