/* Block: sp26-v2-context
 * Extracted from css/product-solutions-v2.css
 * Variables and the legacy section-padding neutralizer are scoped to the
 * block root (.sp26-v2-context) so the block is self-contained and
 * configurable. Webfonts (Manrope / Inter) are provided by the active
 * theme, so no @import is added here — matching the source stylesheet.
 */

.sp26-v2-context {
    --pp-black: #000000;
    --pp-dark: #151515;
    --pp-dark-card: #212121;
    --pp-dark-bg: #1f1f1f;
    --pp-border-dark: #404040;
    --pp-border-light: #d8d8d8;
    --pp-green: #1ea482;
    --pp-green-bold: #0b9b8a;
    --pp-gray: #8e8e8e;
    --pp-gray-light: #d8d8d8;
    --pp-white: #ffffff;
    --pp-beige: #fafafa;
    --pp-content-max: 1200px;
    --pp-font-heading: "Manrope", sans-serif;
    --pp-font-body: "Inter", sans-serif;
    --pp-font-mono: "Inconsolata", "JetBrains Mono", monospace;

    --pp-section-pad: 0;

    color: var(--pp-black);
    font-family: var(--pp-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: #fff;
}

.sp26-v2-context:not(.container) {
    padding: var(--pp-section-pad, 0px) !important;
}

.sp26-v2-context__container {
    max-width: 1200px;
    margin: 0 auto;
    border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
}

.sp26-v2-context__header {
    padding: 55px 32px 40px;
    text-align: center;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.sp26-v2-context__eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #8e8e8e;
    font-family: var(--pp-font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.sp26-v2-context__title,
.sp26-v2-context__header h2 {
    margin: 0;
    color: #000;
    font-family: var(--pp-font-heading);
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    text-wrap: balance;
    letter-spacing: -0.63px;
}

.sp26-v2-context__title span,
.sp26-v2-context__header h2 span,
.sp26-v2-context__copy h3 span {
    color: var(--pp-green-bold);
    font-weight: 700;
}

.sp26-v2-context__grid {
    background: #fff;
}

.sp26-v2-context__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 1fr);
    column-gap: 68px;
    align-items: center;
    min-height: 254px;
    padding: 43px 50px 65px;
    border-bottom: 1px solid #e7e7e7;
}

.sp26-v2-context__row:last-child {
    padding-bottom: 95px;
}

.sp26-v2-context__copy {
    max-width: 480px;
}

.sp26-v2-context__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 25px;
    margin-bottom: 22px;
    padding: 4px 12px;
    border-radius: 3px;
    background: #008f7d;
    color: #fff;
    font-family: var(--pp-font-body);
    font-size: 9px;
    font-weight: 600;
    line-height: 12px;
}

.sp26-v2-context__copy h3 {
    margin: 0 0 9px;
    color: #000;
    font-family: var(--pp-font-heading);
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.72px;
    text-wrap: pretty;
    max-width: 463px;
}

.sp26-v2-context__copy p {
    margin: 0;
    color: #050505;
    font-family: var(--pp-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    text-wrap: pretty;
}

.sp26-v2-context__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.sp26-v2-context__list li {
    position: relative;
    padding-left: 43px;
    color: #000;
    font-family: var(--pp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.12px;
    text-wrap: pretty;
}

.sp26-v2-context__list li::before {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 0;
    margin: auto;
    left: 2px;
    width: 16px;
    height: 8px;
    border-left: 1.5px solid #00ac4a;
    border-bottom: 1.5px solid #00ac4a;
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .sp26-v2-context__container {
        max-width: calc(100% - 48px);
    }

    .sp26-v2-context__row {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
        column-gap: 38px;
        padding: 40px 42px;
    }
}

@media (max-width: 768px) {
    .sp26-v2-context__container {
        max-width: none;
        border-left: 0;
        border-right: 0;
    }

    .sp26-v2-context__header {
        padding: 34px 24px 32px;
    }

    .sp26-v2-context__title,
    .sp26-v2-context__header h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .sp26-v2-context__row {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        padding: 38px 28px;
    }

    .sp26-v2-context__copy {
        max-width: none;
    }

    .sp26-v2-context__list {
        margin-top: 0;
    }

    .sp26-v2-context__list li {
        padding-left: 32px;
    }
}

@media (max-width: 555px) {
    .sp26-v2-context__header {
        padding: 30px 22px 28px;
    }

    .sp26-v2-context__title,
    .sp26-v2-context__header h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .sp26-v2-context__row {
        padding: 34px 22px;
    }

    .sp26-v2-context__copy h3 {
        font-size: 21px;
        line-height: 27px;
    }
}
