/**
 * Module: lpage_founders
 * Two-column founder section with photos left, content right
 */

.t1-founders {
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 6rem max(1.5rem, calc(50vw - var(--max-width) / 2 + 1.5rem));
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Two-column layout: photos left, content right */
@media (min-width: 900px) {
    .t1-founders { 
        grid-template-columns: auto 1.3fr; 
        gap: 1rem 4rem;
    }
    
    .t1-founders > hgroup,
    .t1-founders > p,
    .t1-founders > blockquote,
    .t1-founders > dl {
        grid-column: 2;
    }
    
    .t1-founders__photos {
        grid-row: 1 / span 5;
    }
}

/* Fine-tune spacing */
.t1-founders > hgroup {
    margin-bottom: 0.25rem;
}

.t1-founders > blockquote {
    margin: 0.5rem 0;
}

/* Background character */
.t1-founders::before {
    content: attr(data-bg-char);
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    font-size: min(22vw, 300px);
    font-weight: 100;
    color: var(--jade);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

/* Photo stack */
.t1-founders__photos {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.t1-founders__photos a {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}

.t1-founders__photos a img {
    width: 170px;
    height: 220px;
    object-fit: cover;
}

.t1-founders__photos a:hover { 
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.t1-founders__photos a:first-child {
    transform: translateX(12px) rotate(-2deg);
    z-index: 2;
}

.t1-founders__photos a:last-child {
    transform: translateX(-12px) rotate(2deg);
}

.t1-founders__photos a:first-child:hover {
    transform: translateX(12px) rotate(-2deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.t1-founders__photos a:last-child:hover {
    transform: translateX(-12px) rotate(2deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.t1-founders__photos figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2.5rem 0.75rem 0.75rem;
    text-align: center;
}

.t1-founders__photos figcaption small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.125rem;
}

/* Quote box */
.t1-founders blockquote {
    background: var(--jade-light);
    border-left: 3px solid var(--jade);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 0.75rem 0;
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--jade-dark);
    line-height: 1.7;
}

/* Stats grid */
.t1-founders__stats {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pearl);
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: auto auto;
    gap: 0.25rem 2.5rem;
    justify-content: start;
}

.t1-founders__stats dt {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jade);
    line-height: 1;
}

.t1-founders__stats dd {
    font-size: 0.8125rem;
    color: var(--stone);
    margin: 0;
    line-height: 1.3;
}

/* Mobile stats */
@media (max-width: 599px) {
    .t1-founders__stats {
        gap: 0.25rem 1.5rem;
    }
    
    .t1-founders__stats dt {
        font-size: 1.5rem;
    }
    
    .t1-founders__stats dd {
        font-size: 0.75rem;
    }
}