.featured-case-section--light {
    background: var(--pm-color-paper);
    color: var(--pm-color-anthrazit);
}

.featured-case-section--dark {
    background: var(--pm-color-ink);
    color: var(--pm-color-paper);
}

.featured-case {
    width: min(100% - 40px, var(--pm-container-wide));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
    min-height: 560px;
}

.featured-case-visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #0e141c;
}

.featured-case-visual--cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-case-visual--cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 15%, rgba(245, 158, 1, 0.16), transparent 34%),
        linear-gradient(180deg, transparent 40%, rgba(11, 13, 16, 0.7) 100%);
    pointer-events: none;
}

.featured-case-visual--contain {
    display: grid;
    place-items: center;
    padding: clamp(18px, 3vw, 34px);
    background:
        radial-gradient(circle at 78% 18%, rgba(245, 158, 1, 0.14), transparent 32%),
        linear-gradient(145deg, #0a0d11 0%, #151d27 100%);
}

.featured-case-visual--contain img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100% - 18px);
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.38);
}

.featured-case-copy {
    padding: clamp(32px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.featured-case-label {
    margin: 0;
    color: var(--pm-color-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.featured-case-section--light .featured-case-label {
    color: var(--pm-color-orange-on-light);
}

.featured-case-copy h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
}

.featured-case-copy > p {
    margin: 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.86;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.proof-stat {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 108px;
    padding: 16px;
    border-radius: var(--pm-radius);
    border: 1px solid rgba(61, 70, 84, 0.16);
}

.featured-case-section--dark .proof-stat {
    border-color: var(--pm-color-line-dark);
}

.proof-stat strong {
    color: var(--pm-color-orange);
    font-size: 20px;
    line-height: 1;
}

.featured-case-section--light .proof-stat strong {
    color: var(--pm-color-orange-on-light);
}

.proof-stat span {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.82;
}

@media (max-width: 900px) {
    .featured-case {
        grid-template-columns: 1fr;
    }

    .featured-case-visual {
        min-height: 280px;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}
