.pw-service-hero {
    min-height: 0;
}

.pw-service-hero--compact .pw-service-hero__inner {
    padding-bottom: clamp(88px, 10vw, 128px);
}

.pw-service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

.pw-service-hero__content {
    min-width: 0;
    max-width: 760px;
}

.pw-service-hero__grid--solo .pw-service-hero__content {
    max-width: 880px;
}

.pw-service-hero__crumbs {
    margin-bottom: 22px;
}

.pw-service-hero__crumbs--center {
    justify-content: center;
}

.pw-service-hero__title {
    overflow-wrap: anywhere;
}

.pw-service-hero__title span,
.pw-service-hero__title strong,
.pw-service-hero__title b {
    color: var(--pw-accent);
    font-weight: inherit;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .pw-service-hero__title span,
    .pw-service-hero__title strong,
    .pw-service-hero__title b {
        background-image: linear-gradient(120deg, var(--pw-accent-2), var(--pw-accent) 55%, var(--pw-violet));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.pw-service-hero__lead {
    overflow-wrap: anywhere;
}

.pw-service-hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--pw-line);
}

.pw-service-hero__proof-num {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--pw-accent);
}

.pw-service-hero__proof-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pw-muted);
}

.pw-service-hero__media {
    position: relative;
    min-width: 0;
}

.pw-service-hero__collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pw-service-hero__collage--single {
    grid-template-columns: minmax(0, 1fr);
}

.pw-service-hero__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.pw-service-hero__col--offset {
    padding-top: 36px;
}

.pw-service-hero__shot {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius-lg);
    background: var(--pw-surface);
    box-shadow: var(--pw-shadow-lg);
    transition: transform .5s var(--pw-ease);
}

.pw-service-hero__shot--tall {
    height: 200px;
}

.pw-service-hero__collage--single .pw-service-hero__shot {
    height: auto;
    aspect-ratio: 4 / 3;
}

.pw-service-hero__shot:hover {
    transform: translateY(-4px);
}

.pw-service-hero__perf {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius-lg);
    background: var(--pw-glass);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: var(--pw-shadow-lg);
}

.pw-service-hero__perf--tall {
    min-height: 200px;
}

.pw-service-hero__perf-title {
    margin: 10px 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--pw-text);
}

.pw-service-hero__perf-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pw-muted);
}

@media (min-width: 640px) {
    .pw-service-hero__collage,
    .pw-service-hero__col {
        gap: 16px;
    }

    .pw-service-hero__col--offset {
        padding-top: 48px;
    }

    .pw-service-hero__shot,
    .pw-service-hero__perf {
        min-height: 190px;
    }

    .pw-service-hero__shot {
        height: 190px;
    }

    .pw-service-hero__shot--tall,
    .pw-service-hero__perf--tall {
        min-height: 250px;
    }

    .pw-service-hero__shot--tall {
        height: 250px;
    }

    .pw-service-hero__perf {
        padding: 24px;
    }
}

@media (min-width: 1025px) {
    .pw-service-hero {
        min-height: min(84vh, 820px);
    }

    .pw-service-hero__grid--media {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    }

    .pw-service-hero__shot {
        height: 210px;
    }

    .pw-service-hero__shot--tall {
        height: 290px;
    }

    .pw-service-hero__perf {
        min-height: 210px;
    }

    .pw-service-hero__perf--tall {
        min-height: 290px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pw-service-hero__shot {
        transition: none;
    }

    .pw-service-hero__shot:hover {
        transform: none;
    }
}
