html {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

header h1 {
    margin: 0;
}

h2 {
    margin: 0;
    color: blue;
}

h3 {
    margin: 0;
    color: rgb(86, 86, 238);
}

.jumbotron-bg {
    background-image: url('https://example.com/your-image.jpg');
    /* 원하는 이미지 URL로 변경하세요 */
    background-size: cover;
    background-position: center;
    color: white;
}

.jumbotron-bg h2,
.jumbotron-bg p {
    background: rgba(0, 0, 0, 0.5);
    /* 텍스트 가독성을 위한 반투명 배경 */
    display: inline-block;
    padding: 10px;
}

#content-wrap {
    flex: 1;
}

.table thead th {
    background-color: #e6e6fa;
}

.table tbody tr:nth-child(odd) {
    background-color: #f0f8ff;
}

.table tbody tr:nth-child(even) {
    background-color: #f5fffa;
}

.highlight-yellow {
    background-color: #ffffe0;
}

.highlight-green {
    background-color: #e0fff0;
}

#steering {
    border-right: #e0fff0 4px solid;
}

#steering p {
    font-size: 1.5em;
}

.steering_member {
    font-size: 1.2em;
    color: brown;
}

.convergence_member {
    font-size: 1.2em;
    color: black;
}

.steering_member_img {
    /* 크기: 필요에 맞게 조절 (반응형은 max-width로) */
    width: 140px;
    /* 또는 max-width:120px; width:100%; */
    height: 140px;
    /* aspect-ratio: 1 / 1; 로 대체 가능 */
    /* 둥글게 + 꽉 채우기 */
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    /* 프레임 제거 */
    padding: 0;
    display: block;
    /* 옵션: 보더/섀도우 */
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.tpc_academia {
    font-size: 1.2em;
    color: chocolate;
}

.tpc_industry {
    font-size: 1.2em;
    color: darkgreen;
}

/* 행 전체: 좌·우 컬럼을 세로 가운데 */
.member {
    align-items: center;
    border-radius: 20px;
    box-shadow: #d0d7de 0px 2px 8px;
    background-color: #f9fafb;
    margin-right: 15px;
    margin-bottom: 24px;
}

/* .row는 원래 flex 컨테이너 */

/* 사진 칼럼 내부에서도 이미지 중앙 정렬 */
.member__photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 반응형 보정(모바일에서 위아래로 쌓일 때) */
@media (max-width: 575.98px) {
    .member {
        align-items: flex-start;
    }

    .member__photo {
        margin-bottom: 12px;
    }
}


/* “이전 컨퍼런스” 목록을 카드형·섹시한 리스트로 구성 */
#previous_conf ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#previous_conf li {
    margin-bottom: 12px;
}

#previous_conf li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 30px;
    border: 1px solid #e5e7eb;
    /* 테두리 */
    border-radius: 14px;
    /* 둥근 카드 */
    background: #fff;
    /* 카드 배경 */
    text-decoration: none;
    color: #0f172a;
    /* 본문색 */
    box-shadow: 0 2px 8px rgba(16, 24, 40, .06);
    transition: transform .06s ease, box-shadow .2s ease, border-color .2s ease;
}

/* hover/keyboard focus */
#previous_conf li a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 24, 40, .12);
    border-color: #d0d7de;
}

#previous_conf li a:focus-visible {
    outline: 3px solid rgba(124, 58, 237, .35);
    /* 접근성: 보라색 포커스 링 */
    outline-offset: 2px;
}

/* 오른쪽 화살표 아이콘 (텍스트는 그대로) */
#previous_conf li a::after {
    content: "↗";
    margin-left: auto;
    font-size: 18px;
    opacity: .35;
    transition: opacity .2s;
}

#previous_conf li a:hover::after {
    opacity: .85;
}