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

/* ============================================
   DIFFERENTIATORS
   ============================================ */

.t1-diff {
    padding: 5rem max(1.5rem, calc(50vw - var(--max-width) / 2 + 1.5rem));
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Figure (Image + Badge) */
.t1-diff figure {
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 320px; /* Constrain on mobile too */
}

.t1-diff figure img {
    width: 100%;
    height: auto;
    display: block;
}

.t1-diff figcaption {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--jade-deep);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.t1-diff figcaption strong {
    font-size: 2rem;
    font-weight: 700;
}

.t1-diff figcaption small {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.125rem;
}

/* Content (hgroup) */
.t1-diff hgroup {
    margin: 0;
    max-width: none;
}

/* Features (dl) */
.t1-diff dl {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    row-gap: 1.5rem;
    margin: 0;
}

.t1-diff dt {
    font-size: 1.5rem;
    color: var(--jade-dark);
    line-height: 1;
}

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

.t1-diff dd strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* Desktop: Image left (fixed width), content right */
@media (min-width: 900px) {
    .t1-diff {
        grid-template-columns: 280px 1fr; /* Fixed small image column */
        grid-template-rows: auto 1fr;
        grid-template-areas:
            "image content"
            "image features";
        gap: 2rem 4rem;
        align-items: start;
    }

    .t1-diff figure {
        grid-area: image;
        max-width: none; /* Let grid control width */
    }

    .t1-diff hgroup {
        grid-area: content;
    }

    .t1-diff dl {
        grid-area: features;
        row-gap: 2rem;
        column-gap: 1.5rem;
    }

    .t1-diff dt {
        font-size: 1.75rem;
    }

    .t1-diff dd strong {
        font-size: 1.0625rem;
    }
}

