@charset "utf-8";

/* 역대 동문회장 그리드 레이아웃 */
.president-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

/* 카드 스타일 */
.president-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 카드 헤더 */
.president-header {
	background: #2061cc;
	color: #fff;
	text-align: center;
	padding: 27px 0;
	font-size: 16px;
	font-weight: 600;
}

/* 카드 콘텐츠 */
.president-content {
	padding: 30px 20px;
	text-align: center;
}

/* 프로필 사진 */
.president-photo {
	width: 177px;
	height: 188px;
	margin: 0 auto;
	border: 1px solid #dcdcdc;
}
.president-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 이름 */
.president-name {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-top: 30px;
	margin-bottom: 20px;
}

/* 정보 영역 */
.president-info {
	display: flex;
	flex-direction: column;
}
.president-info .info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 10px;
	font-size: 14px;
	border-bottom: 1px solid #dcdcdc;
}
.president-info .info-row:last-child {
	border-bottom: none;
}
.president-info .info-row .label {
	color: #2061cc;
	font-weight: 600;
}
.president-info .info-row .value {
	color: #333;
	font-weight: 700;
}

/* 태블릿 */
@media (max-width: 1024px) {
	.president-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* 모바일 */
@media (max-width: 768px) {
	.president-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}

	.president-content {
		padding: 25px 15px;
	}

	.president-name {
		font-size: 16px;
	}

	.president-info .info-row {
		font-size: 13px;
	}
}
