@charset "utf-8";
/************************************************************************************************************
                                          광주지방변호사회 소개 - 역대회장명단
************************************************************************************************************/
         :root {
			--header-bg: #f8f9fa;
            --primary-blue: #005696;
            --light-gray: #f8f9fa;
            --border-color: #dee2e6;
        }
				
        .org-container {
            max-width: 1320px;
            margin: 0 auto;
            border-top: 3px solid var(--primary-blue);
        }

        /* 섹션 제목 */
        .section-title {
            background-color: var(--light-gray);
            text-align: center;
            padding: 15px;
            font-weight: bold;
            font-size: 2rem;
            border-bottom: 1px solid var(--border-color);
        }


        .container {
            max-width: 1320px;
            margin: 50px auto;
            padding: 0 20px;
        }

/* 탭 메뉴 디자인 */
        .tab-menu {
            display: flex;
            list-style: none;
            margin-bottom: 40px;
            border: 1px solid #ddd;
            background-color: #f4f4f4;
        }
        .tab-item {
            flex: 1;
            text-align: center;
            padding: 18px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 17px;
            transition: all 0.3s ease;
            border-right: 1px solid #ddd;
            color: #666;
        }
        .tab-item:last-child { border-right: none; }
        .tab-item:hover { background-color: #e9e9e9; }
        .tab-item.active {
            background-color: #2c3e5e; /* 다크블루 */
            color: #fff;
        }

        /* 리스트 그리드 (한 줄에 2명) */
        .member-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* 인물 카드 디자인 */
        .profile-card {
            display: flex;
            background-color: #fff;
            border: 1px solid #ccc;
            border-top: 4px solid #005596;
            /*box-shadow: 0 2px 5px rgba(0,0,0,0.05);*/
        }
        .photo-area {
            width: 170px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid #eee;
            background-color: #fff;
        }
        .photo-area img {
            width: 100%;
            height: auto;
            border: 1px solid #eee;
        }
        .info-area {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .info-title {
            padding: 10px;
            text-align: center;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            font-size: 18px;
            font-weight: bold;
            color: #005596;
        }
        .info-name {
            padding: 15px;
            text-align: center;
            font-size: 22px;
            font-weight: bold;
            border-bottom: 1px solid #eee;
            letter-spacing: -1px;
        }

        /* 상세 테이블 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            height: 100%;
        }
        .info-table th {
            background-color: #f9f9f9;
            width: 30%;
            padding: 10px;
            border-bottom: 1px solid #eee;
            border-right: 1px solid #eee;
            text-align: left;
            color: #555;
            font-weight: bold;
        }
        .info-table td {
            padding: 10px;
            border-bottom: 1px solid #eee;
            color: #333;
        }
        .info-table tr:last-child th, 
        .info-table tr:last-child td { border-bottom: none; }

        /* 모바일 대응 (반응형) */
        @media (max-width: 1100px) {
            .member-list { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
        }
        @media (max-width: 768px) {
            .tab-menu { flex-wrap: wrap; }
            .tab-item { flex: none; width: 50%; border-bottom: 1px solid #ddd; padding: 12px 0; font-size: 15px; }
            .profile-card { flex-direction: column; }
            .photo-area { width: 100%; border-right: none; border-bottom: 1px solid #eee; padding: 30px; }
            .photo-area img { max-width: 150px; }
        }

