/* ============================================================
   34. SEKCJA KALKULATOR (podstrona kategorii)
   ============================================================ */
.rev-calc-section {
    background: #fff;
    padding: 0px 60px;
    width: 100%;
    box-sizing: border-box;
}
.rev-calc-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.rev-calc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 32px !important;
}
.rev-calc-list li {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #1c1c1b !important;
    padding: 6px 0 6px 0px !important;
    position: relative;
    margin: 0 !important;
}
.rev-calc-list li::before {
    position: absolute;
    left: 6px;
    color: #e30613;
    font-size: 20px;
    line-height: 1.3;
}


.rev-calc-table {
    width: 100%;
    border: 1px solid #d0d0d0;
    background: #fff;
}
.rev-calc-thead {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-bottom: 2px solid #1c1c1b;
}
.rev-calc-th {
    padding: 14px 20px;
    font-family: "Bahnschrift", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1c1c1b;
}
.rev-calc-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-top: 1px solid #d0d0d0;
}
.rev-calc-row:first-of-type {
    border-top: none;
}
.rev-calc-td {
    padding: 18px 20px;
    font-family: "Noto Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1c1c1b;
    border-right: 1px solid #d0d0d0;
}
.rev-calc-td:last-child {
    border-right: none;
}
.rev-calc-td--num {
    font-family: "Bahnschrift", sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #1c1c1b;
    display: flex;
    align-items: center;
    justify-content: center;
}

