/* ===========================
   SINGLE PRICES TABLE STYLES
   =========================== */
.breadcrumbs span:last-child {
    color: var(--Primary);
}

.single-prices__container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.post-title-wrapper h1 {
    font-size: 36px;
    margin-bottom: 40px;
}
.content-area {
    padding: 60px 0 120px;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--Background-light, #F7F2EF);
    border-radius: 12px;
    overflow: hidden;
}


.prices-table th,
.prices-table td {
    padding: 16px 20px;
    text-align: left;
}

.prices-table th {
    color: #ffffff;
    background: var(--Primary);
}

.prices-table tr:last-child td {
    border-bottom: none;
}

.prices-table td {
    border-bottom: 1px solid var(--Background-dark);
    font-size: 15px;
}

/* Hover эффект */
.prices-table tbody tr:hover {
    background: rgba(0,0,0,0.03);
}

/* ====== MOBILE ====== */

@media (max-width: 600px) {
    .prices-table th,
    .prices-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}
