/* Lifetime Installation Warranty page */

.warranty-list {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
}
.warranty-list li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.warranty-list li::before {
    content: "\2713"; /* check */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 800;
}

/* Covered vs not-covered quick strip */
.warranty-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.25rem 0;
}
.warranty-split .panel {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem 1.25rem 0.75rem;
    background: var(--white);
}
.warranty-split .panel h3 {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}
.warranty-split .panel.free { border-top: 4px solid var(--green); }
.warranty-split .panel.billable { border-top: 4px solid var(--gray); }
.warranty-split ul { list-style: none; margin: 0; padding: 0; }
.warranty-split li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; line-height: 1.5; }
.warranty-split .free li::before { content: "\2713"; color: var(--green); position: absolute; left: 0; font-weight: 800; }
.warranty-split .billable li::before { content: "$"; color: var(--gray); position: absolute; left: 0; font-weight: 800; }

@media (max-width: 640px) {
    .warranty-split { grid-template-columns: 1fr; }
}
