.test-patrol-poster {
    margin: 12px 0;
}

.test-patrol-poster-link {
    position: relative;
    isolation: isolate;
    min-height: 260px;
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 26px;
    color: #101828;
    background: #eee7e2;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .12), 0 5px 18px rgba(249, 115, 22, .1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.test-patrol-poster-link::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 250, 246, .97) 34%, rgba(255, 250, 246, .75) 51%, rgba(255, 255, 255, .06) 72%),
        linear-gradient(0deg, rgba(249, 115, 22, .12), transparent 40%);
}

.test-patrol-poster-link::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, #dc4f00, #f97316, #ffad66);
}

.test-patrol-poster-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.test-patrol-poster-copy {
    position: relative;
    z-index: 2;
    width: min(52%, 640px);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 26px 28px;
}

.test-patrol-poster-status {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    padding: 0 10px;
    border: 1px solid rgba(249, 115, 22, .22);
    border-radius: 999px;
    color: #9a3412;
    background: rgba(255, 244, 235, .92);
    font-size: 9px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.test-patrol-poster-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}

.test-patrol-poster-copy h2 {
    margin: 0;
    color: #101828;
    font-size: clamp(31px, 3.3vw, 50px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.055em;
}

.test-patrol-poster-copy h2 span {
    display: block;
    color: #f97316;
}

.test-patrol-poster-copy p {
    max-width: 500px;
    margin: 11px 0 0;
    color: #475467;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 750;
}

.test-patrol-poster-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 13px;
}

.test-patrol-poster-meta span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    color: #475467;
    background: rgba(255, 255, 255, .8);
    font-size: 8px;
    font-weight: 900;
}

.test-patrol-poster-cta {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 0 14px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #dc4f00, #f97316);
    box-shadow: 0 10px 22px rgba(249, 115, 22, .24);
    font-size: 10px;
    font-weight: 950;
}

.test-patrol-poster-note {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 13px;
    max-width: 340px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    color: #667085;
    background: rgba(255, 255, 255, .78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 7px;
    line-height: 1.2;
    font-weight: 850;
}

@media (hover: hover) and (pointer: fine) {
    .test-patrol-poster-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 23px 50px rgba(15, 23, 42, .14), 0 8px 22px rgba(249, 115, 22, .13);
    }
}

@media (max-width: 720px) {
    .test-patrol-poster {
        margin: 9px 0;
    }

    .test-patrol-poster-link {
        min-height: 225px;
        border-radius: 20px;
    }

    .test-patrol-poster-link::before {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 250, 246, .95) 45%, rgba(255, 250, 246, .55) 66%, rgba(255, 255, 255, 0) 82%),
            linear-gradient(0deg, rgba(249, 115, 22, .13), transparent 42%);
    }

    .test-patrol-poster-image {
        object-position: 58% center;
    }

    .test-patrol-poster-copy {
        width: 61%;
        min-height: 225px;
        padding: 16px 4px 16px 15px;
    }

    .test-patrol-poster-status {
        min-height: 24px;
        margin-bottom: 8px;
        padding: 0 8px;
        font-size: 7px;
    }

    .test-patrol-poster-copy h2 {
        font-size: clamp(27px, 8vw, 36px);
    }

    .test-patrol-poster-copy p {
        max-width: 215px;
        margin-top: 7px;
        font-size: 9px;
        line-height: 1.4;
    }

    .test-patrol-poster-meta {
        gap: 3px;
        margin-top: 8px;
    }

    .test-patrol-poster-meta span {
        min-height: 21px;
        padding: 0 6px;
        font-size: 7px;
    }

    .test-patrol-poster-meta span:last-child {
        display: none;
    }

    .test-patrol-poster-cta {
        min-height: 32px;
        margin-top: 9px;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 8px;
    }

    .test-patrol-poster-note {
        right: 8px;
        bottom: 8px;
        max-width: 142px;
        padding: 5px 7px;
        font-size: 6px;
        text-align: right;
    }
}

@media (max-width: 380px) {
    .test-patrol-poster-copy {
        width: 64%;
    }

    .test-patrol-poster-copy p {
        display: none;
    }

    .test-patrol-poster-meta {
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .test-patrol-poster-link {
        transition: none;
    }
}
