@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Raleway:wght@400;500;600;700&display=swap');

/* Full-bleed breakout with roomy side gutters (15% each side) */
.lab-product {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.lab-product__inner {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    gap: 3rem;
}

/* Image panel on the left */
.lab-product__image {
    background: transparent;
    border-radius: 28px;
    width: 100%;
    /* default ratio overridden by [data-variant] below */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lab-product[data-variant="tall"] .lab-product__image { aspect-ratio: 3 / 4; }
.lab-product[data-variant="wide"] .lab-product__image { aspect-ratio: 4 / 3; }

.lab-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keep transparent PNG/SVG centered */
    object-position: center;
    display: block;
}

/* Right-side content area */
.lab-product__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left-justify within the 60% column */
}

/* H2 per design system (_typography.scss) */
.lab-product__title {
    font-family: var(--font-family-heading, 'Inter', sans-serif);
    font-weight: var(--font-weight-semibold, 600);
    line-height: var(--line-height-tight, 120%);
    font-size: clamp(36px, 4vw, 48px);
    letter-spacing: var(--letter-spacing-normal, 0);
    margin: 0 0 1rem 0;
    color: var(--color-text-primary, #000);
}

/* Description: Inter 500, 140% line height (H5-ish) */
.lab-product__desc {
    font-family: var(--font-family-heading, 'Inter', sans-serif);
    font-weight: var(--font-weight-medium, 500);
    line-height: 140%;
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--color-text-primary, #000);
}

.lab-product__cta { margin-top: 2rem; }

/* Primary button: brand color, white Raleway 500, rounded 5px */
.lab-product__button {
    display: inline-block;
    background: var(--color-brand-primary, #1D45A5);
    color: var(--color-white, #FFF) !important;
    border: none;
    border-radius: 5px;
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    font-family: var(--font-family-body, 'Raleway', sans-serif);
    font-weight: var(--font-weight-medium, 500);
    line-height: 150%;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,.12);
}

.lab-product__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,.18);
}

/* Responsive layout: stack on small screens */
@media (max-width: 900px) {
    .lab-product { padding-left: 8vw; padding-right: 8vw; }
    .lab-product__inner { grid-template-columns: 1fr; gap: 2rem; }
    .lab-product__image { order: 1; }
    .lab-product__content { order: 2; }
}

