/* RECATOOLS — Loan Comparison Calculator */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}
@media (max-width: 800px) {
    .offers-grid { grid-template-columns: 1fr; }
}

.offer-card {
    background: #fafaf9;
    border: 2px solid #ebebeb;
    border-radius: 10px;
    padding: 1rem;
    transition: border-color .15s;
}
.offer-card h3 {
    margin: 0 0 .5rem;
    font-size: .85rem;
    font-weight: 700;
    color: #1a1814;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offer-card.offer-winner {
    border-color: #16a34a;
    background: #f0fdf4;
}
.offer-card.offer-winner h3::after {
    content: '🏆 BEST';
    font-size: .65rem;
    font-weight: 800;
    background: #16a34a;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: .05em;
}

.input-row { margin-bottom: .6rem; }
.input-row:last-child { margin-bottom: 0; }
.input-row label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: #6b6760;
    margin-bottom: .25rem;
}
.input-row .input-prefix-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}
.input-row .ipx-label {
    padding: .4rem .55rem;
    background: #f0ede9;
    font-size: .75rem;
    font-weight: 600;
    color: #6b6760;
    border-right: 1px solid #ebebeb;
}
.input-row .ipx-label.ipx-suffix {
    border-left: 1px solid #ebebeb;
    border-right: none;
}
.input-row input[type="number"] {
    flex: 1;
    border: none;
    padding: .4rem .55rem;
    font-size: .85rem;
    font-family: inherit;
    background: transparent;
    color: #1a1814;
    width: 100%;
    box-sizing: border-box;
}
.input-row input[type="number"]:focus { outline: none; box-shadow: inset 0 0 0 2px #E8472F; }

.offer-results {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px dashed #d6d3ce;
    font-size: .78rem;
}
.offer-results .or-row {
    display: flex;
    justify-content: space-between;
    padding: .25rem 0;
    border-bottom: 1px dashed #f0ede9;
}
.offer-results .or-row:last-child { border-bottom: none; }
.offer-results .or-label { color: #6b6760; }
.offer-results .or-value {
    font-weight: 700;
    color: #1a1814;
}
.offer-results .or-row--hero .or-value {
    font-size: 1rem;
    font-family: 'IBM Plex Serif', serif;
    color: #0d1b2a;
}

.calc-btn {
    width: 100%;
    margin: .5rem 0;
    padding: .75rem 1.25rem;
    background: #E8472F;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.calc-btn:hover { background: #c8391f; }

.verdict-bar {
    background: #f0fdf4;
    border-left: 3px solid #16a34a;
    border-radius: 0 6px 6px 0;
    padding: .75rem 1rem;
    margin: 1rem 0;
    font-size: .875rem;
    line-height: 1.5;
    color: #1a1814;
}
.verdict-bar:empty { display: none; }

/* cache-buster: 2026-05-24T05:06:05Z */
