/* ================= 설비 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    background-color: #f5f6f8;
    color: #333;
}

.facility-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.table-wrap {
    background-color: #fff;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.facility-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.facility-table thead {
    background-color: #f0f2f5;
}

.facility-table th,
.facility-table td {
    padding: 14px 16px;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid #e2e4e8;
}

.facility-table th {
    font-weight: 600;
    color: #222;
}

.facility-table tbody tr:hover {
    background-color: #f9fafb;
}

.facility-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 10px 20px;
    font-size: 15px;
    border: 1px solid #dcdfe3;
    background-color: #f5f6f8;
    color: #555;
    cursor: pointer;
    border-radius: 6px;
}

.tab-btn.active {
    background-color: #222;
    color: #fff;
    border-color: #222;
}


@media (max-width: 768px) {

    .facility-table thead {
        display: none;
    }

    .facility-table,
    .facility-table tbody,
    .facility-table tr,
    .facility-table td {
        display: block;
        width: 100%;
    }

    .facility-table tr {
        margin-bottom: 16px;
        border-bottom: 2px solid #e2e4e8;
        padding: 12px 0;
    }

    .facility-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 16px;
        font-size: 14px;
        border: none;
    }

    .facility-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        min-width: 90px;
    }
}