/* ============================================================
   quick-facts.css
   Quick Facts component for service pages (Memory/T-Shirt Quilts)
   Displays cost, timeline, and consultation info above fold
   ============================================================ */

.quick-facts {
    background: linear-gradient(135deg, #f5f1ed 0%, #faf8f5 100%);
    border-top: 1px solid #e8dcc8;
    border-bottom: 1px solid #e8dcc8;
    padding: 40px 0;
    margin: 0;
}

.quick-facts__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-facts__item {
    text-align: center;
}

.quick-facts__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(45, 106, 92, 0.1);
    border-radius: 50%;
    color: #2d6a5c;
}

.quick-facts__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.quick-facts__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}

.quick-facts__value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #1a4d3e;
    line-height: 1.2;
    margin-bottom: 8px;
}

.quick-facts__description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 640px) {
    .quick-facts {
        padding: 28px 16px;
    }

    .quick-facts__inner {
        gap: 24px;
    }

    .quick-facts__icon {
        width: 40px;
        height: 40px;
    }

    .quick-facts__value {
        font-size: 20px;
    }

    .quick-facts__description {
        font-size: 12px;
    }
}
