/**
 * Module: lpage_deliverables
 * Auto-extracted from style.css
 */

/* ============================================
   DELIVERABLES
   ============================================ */

.t1-deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 6rem max(1.5rem, calc(50vw - 450px + 1.5rem));
    background: var(--jade-light);
}

.t1-deliverables--cream { background: var(--cream); }
.t1-deliverables--pearl { background: var(--pearl); }

.t1-deliverables > hgroup {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.t1-deliverables > .btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 2rem;
}

.t1-deliverables article {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 5px solid var(--jade-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.t1-deliverables article strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--jade-dark);
    margin-bottom: 0.5rem;
}

.t1-deliverables article p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.6;
}

