/**
 * Icon Teasers Section Block Styles
 * 3-column icon teaser cards with optional founder block
 */

.why {
    background: var(--white);
    padding: 60px 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    padding: 28px 24px;
    border-top: 4px solid var(--orange);
    background: var(--light-bg);
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(74, 38, 0, 0.08);
}

.why-item i {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 14px;
}

.why-item h3 {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brown);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* Founder pull-quote row inside .why */
.founder-block {
    max-width: 1000px;
    margin: 40px auto 0;
    background: var(--light-bg);
    border-left: 5px solid var(--orange);
    padding: 32px 36px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 3px 12px rgba(74, 38, 0, 0.08);
}

.founder-eyebrow {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.founder-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 16px;
    line-height: 1.2;
}

.founder-block p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

.founder-block p:last-of-type {
    margin-bottom: 16px;
}

.founder-block .founder-sig {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .why {
        padding: 40px 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        text-align: center;
    }
    
    .founder-block {
        padding: 24px 20px;
    }
    
    .founder-block h3 {
        font-size: 24px;
    }
}
