/* 담당자 안내 섹션 스타일 */
.manager-section {
    padding: 80px 0;
    background-color: #fff;
}

.manager-container {
    max-width: 1200px;
    margin: 0 auto;
}

.manager-title {
    text-align: center;
    margin-bottom: 50px;
}

.manager-title h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.manager-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #007bff;
}

.manager-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
	font-size:15px;
}

.manager-table th,
.manager-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.manager-table th {
    background-color: #e8e8e8;
    color: #333;
    font-weight: 600;
    font-size: 16px;
	text-align:center;
}
.manager-table tr:hover {
    background-color: #f8f9fa;
}

.manager-table .position {
    font-weight: 600;
    color: #005bac;
    width: 15%;
}

.manager-table .name {
    font-weight: 600;
    width: 15%;
}

.manager-table .duty {
    width: 55%;
    line-height: 1.6;
	text-align:left;
}

.manager-table .contact {
    width: 15%;
    color: #666;
}

/* 반응형 스타일 */
@media screen and (max-width: 1440px) {
	.lay_1200{width:100%; max-width:auto; min-width:auto;}
    .manager-section {
        padding: 60px 15px;
    }

    .manager-container {
        padding: 0 0px;
    }

    .manager-title h2 {
        font-size: 32px;
    }

    .manager-table th,
    .manager-table td {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
	
	.manager-table{
		box-shadow:none;
	}
	.manager-table thead tr{
		display:none;
	}
    .manager-section {
        padding: 30px 15px;
    }

    .manager-title {
        margin-bottom: 30px;
    }

    .manager-title h2 {
        font-size: 28px;
    }

    .manager-table,
    .manager-table thead,
    .manager-table tbody,
    .manager-table tr,
    .manager-table th,
    .manager-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .manager-table tr {
        margin-bottom: 24px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        padding: 16px 12px;
		border:1px solid #ccc;
    }

    .manager-table th {
        display: none;
    }

    .manager-table td {
        border: none;
        padding: 8px 0;
        position: relative;
		width:100%;
        min-height: 24px;
    }

	.manager-table .position,
	.manager-table .name,
	.manager-table .duty,
	.manager-table .contact{
		width:100%;
	}

    .manager-table td[data-label]::before {
        content: attr(data-label) ' ';
        display: block;
        font-size: 13px;
        color: #005bac;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .manager-table .duty ul {
        margin: 0;
        padding: 0;
        list-style: disc;
        padding-left: 18px;
    }
    .manager-table .duty li {
        margin-bottom: 8px;
        font-size: 14px;
        color: #222;
        line-height: 1.7;
    }

    .manager-table .position {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
        margin-bottom: 8px;
    }

    .manager-table .name {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .manager-table .duty {
        padding-left: 0;
		text-align:center;
        margin-top: 12px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding-top: 12px;
        font-size: 14px;
        line-height: 1.8;
        white-space: normal;
        word-break: keep-all;
    }

    .manager-table .duty:before {
        display: none;
    }

    .manager-table .duty br {
        margin-bottom: 12px;
        display: block;
    }

    .manager-table .duty li ul {
        margin-top: 8px;
        margin-left: 15px;
    }

    .manager-table .duty li ul li {
        font-size: 13px;
        color: #666;
        margin-bottom: 8px;
        word-break: keep-all;
    }

    .manager-table .duty li ul li:before {
        content: "-";
        color: #666;
    }

    .manager-table .contact {
        margin-top: 8px;
        color: #666;
    }
}