/* =========================================================
   Cost Driver Table Block
   ========================================================= */

.cost-driver-table {
    padding: 20px 40px;
    background: #F1F4F8;
    margin: 0 -40px;
}

.cost-driver-table__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Intro ────────────────────────────────────────────── */
.cost-driver-table__intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.container-post h2.cost-driver-table__title {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #1C1C1C;
}

.cost-driver-table__title span {
    color: #D41028;
}

.cost-driver-table__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
}

/* ── Head ─────────────────────────────────────────────── */
.cost-driver-table__head {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr;
    gap: 32px;
    padding-bottom: 14px;
    border-bottom: 2px solid #000000;
}

.cost-driver-table__head-col {
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
}

/* ── Rows ─────────────────────────────────────────────── */
.cost-driver-table__row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #D2D2D2;
}

.cost-driver-table__row:last-child {
    border-bottom: none;
}

/* ── Cells ────────────────────────────────────────────── */
.cost-driver-table__cell {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000000;
}

.cost-driver-table__cell--name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000000;
}

.cost-driver-table__cell-label {
    display: none;
}

@media (max-width: 1024px) {
    .cost-driver-table {
        margin: 0;
        padding: 20px 0;
        overflow: auto;
    }
}