@charset "utf-8";

/* ===========================
   GUIDE SECTION (이용요금)
=========================== */
.guide-section {
    padding: 70px 0 150px 0;
}

.guide-title {
    text-align: center;
    color: #4D3621;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

/* 테이블 */
.guide-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

/* 헤더 */
.guide-table thead tr {
    background-color: #4D3621;
}

.guide-table thead th {
    padding: 20px 16px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.05em;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.guide-table thead th:last-child {
    border-right: none;
}

/* 바디 */
.guide-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.guide-table tbody tr:hover {
    background-color: rgba(77, 54, 33, 0.04);
}

.guide-table tbody td {
    padding: 24px 16px;
    text-align: center;
    color: #666;
    border-right: 1px solid #eee;
}

.guide-table tbody td:last-child {
    border-right: none;
}

/* 하단 비고 행 */
.guide-footer-row td {
    color: #666;
    text-align: center;
    padding: 18px 16px;
    border-right: none !important;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 767px) {
    .guide-table thead th,
    .guide-table tbody td {
        padding: 14px 8px;
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .guide-table thead th,
    .guide-table tbody td {
        padding: 18px 12px;
    }
}