.post-calc-panels {
    display: grid;
    gap: 1rem;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
}

.finance-info-panel {
    background: #ffffff;
    border: 1px solid #dbe5f3;
    border-radius: 18px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
}

.finance-info-panel h2 {
    margin: 0 0 0.75rem;
    font-size: 1.55rem;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
}

.finance-info-panel p {
    margin: 0;
    color: #405875;
    font-size: 0.95rem;
    line-height: 1.7;
}

.finance-info-panel p + p {
    margin-top: 0.75rem;
}

.panel-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    background: linear-gradient(135deg, #2f66f5 0%, #2554d9 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.2;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(37, 84, 217, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.panel-primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 84, 217, 0.24);
    filter: brightness(1.02);
    color: #ffffff;
    text-decoration: none;
}

.panel-primary-button:focus-visible {
    outline: 3px solid rgba(37, 84, 217, 0.22);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .post-calc-panels {
        margin-top: -0.75rem;
        gap: 0.85rem;
    }

    .finance-info-panel {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .finance-info-panel h2 {
        font-size: 1.35rem;
    }

    .finance-info-panel p {
        font-size: 0.92rem;
    }

    .panel-primary-button {
        width: 100%;
        text-align: center;
    }
}