.enterprise-expert-services {
    /* Local dark-scope overrides — same pattern as .enterprise-stats */
    --color-1st-bg: var(--color-reverse-bg);
    --color-1st-fg: var(--color-reverse-fg);
    --color-2nd-fg: rgba(255, 255, 255, 0.8);

    background: var(--color-1st-bg);
    color: var(--color-1st-fg);
    padding-top: var(--space-section-lg);
}

.enterprise-expert-services__container {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

.enterprise-expert-services__title {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-h2);
    line-height: 1.15;
    color: var(--color-1st-fg);
}

.enterprise-expert-services__row {
    display: flex;
    align-items: flex-start;
    gap: var(--section-gap);
    width: 100%;
}

.enterprise-expert-services__card {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.enterprise-expert-services__card-media-wrapper {
    width: 100%;
    aspect-ratio: 676 / 450;
    overflow: hidden;
}

.enterprise-expert-services__card-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
}

.enterprise-expert-services__card-text {
    width: 100%;
    margin: 0;
    padding-top: var(--var-40);
    max-width: 600px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-label-lg);
    line-height: 1.4;
    color: var(--color-2nd-fg);
    font-variation-settings: "opsz" 14;
}

.enterprise-expert-services__card-text strong {
    font-weight: 700;
    color: var(--color-2nd-fg);
}

@media (max-width: 992px) {
    .enterprise-expert-services__row {
        flex-direction: column;
        gap: var(--section-gap);
    }

    .enterprise-expert-services__card-media-wrapper {
        max-width: 676px;
        align-self: center;
    }
}

@media (max-width: 768px) {

    /* Mobile (390px Figma): tighter padding above text, full-width media, 16px body copy */
    .enterprise-expert-services__card-media-wrapper {
        max-width: 100%;
        align-self: stretch;
    }

    .enterprise-expert-services__card-text {
        padding-top: var(--var-24);
        font-size: 16px;
    }
}