.tremml-trustbanner-section {
    margin: 2rem 0 2.5rem;
}

.tremml-trustbanner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: stretch;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(244, 226, 37, .18), rgba(244, 226, 37, .04) 36%, rgba(255, 255, 255, .02) 100%);
    padding: 1px;
    box-shadow:
        0 22px 52px rgba(0, 0, 0, .18),
        0 0 0 1px rgba(255, 255, 255, .02);
    transition: transform .24s ease, box-shadow .24s ease;
}

.tremml-trustbanner:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, .24),
        0 0 0 1px rgba(244, 226, 37, .08);
}

.tremml-trustbanner-copy,
.tremml-trustbanner-media {
    min-width: 0;
}

.tremml-trustbanner-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 34px 34px 32px;
    background:
        radial-gradient(circle at top left, rgba(244, 226, 37, .12), rgba(244, 226, 37, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015)),
        #252720;
    border-radius: 23px 0 0 23px;
}

.tremml-trustbanner-copy::after {
    content: "";
    position: absolute;
    inset: auto auto -36px -36px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 226, 37, .12), rgba(244, 226, 37, 0) 72%);
    pointer-events: none;
}

.tremml-trustbanner-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(244, 226, 37, .08);
    border: 1px solid rgba(244, 226, 37, .18);
    color: var(--t-yellow);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tremml-trustbanner-copy h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f7f7f2;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.045em;
    max-width: 14ch;
}

.tremml-trustbanner-copy p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 56ch;
}

.tremml-trustbanner-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--t-yellow);
    color: #232323;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .2s ease, background .2s ease;
}

.tremml-trustbanner:hover .tremml-trustbanner-cta {
    transform: translateY(-1px);
    background: #fff07c;
}

.tremml-trustbanner-media {
    position: relative;
    overflow: hidden;
    border-radius: 0 23px 23px 0;
    background: #1b1d22;
}

.tremml-trustbanner-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(27, 29, 34, .18), rgba(27, 29, 34, 0) 24%),
        linear-gradient(180deg, rgba(27, 29, 34, .02), rgba(27, 29, 34, .10));
    z-index: 1;
    pointer-events: none;
}

.tremml-trustbanner-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
    transition: transform .3s ease;
}

.tremml-trustbanner:hover .tremml-trustbanner-media img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .tremml-trustbanner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tremml-trustbanner-copy {
        border-radius: 23px 23px 0 0;
        padding: 28px 24px 24px;
    }

    .tremml-trustbanner-media {
        min-height: 260px;
        border-radius: 0 0 23px 23px;
    }
}

@media (max-width: 575px) {
    .tremml-trustbanner-section {
        margin: 1.5rem 0 2rem;
    }

    .tremml-trustbanner-copy {
        padding: 22px 18px 18px;
        gap: 14px;
    }

    .tremml-trustbanner-copy h2 {
        font-size: 1.45rem;
        max-width: none;
    }

    .tremml-trustbanner-copy p {
        font-size: .95rem;
        line-height: 1.6;
    }

    .tremml-trustbanner-media {
        min-height: 220px;
    }
}


