.team-trust-callouts-block {
    width: 100%;
    padding: 55px 0;
}

.team-trust-callouts-inner {
    width: min(100% - 48px, 1740px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 830px) 1fr;
    gap: 56px;
    align-items: stretch;
}

.team-trust-left {
    position: relative;
    background: #005fa8;
    color: #ffffff;
    border-radius: 30px;
    padding: clamp(34px, 4vw, 64px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.team-trust-heading {
    color: #ffffff;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.18;
    letter-spacing: .05em;
    margin: 0 0 72px;
    max-width: 720px;
}

.team-trust-content {
    max-width: 760px;
    margin: 0 0 34px;
    color: #ffffff;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.75;
}

.team-trust-content p {
    margin: 0 0 28px;
    color:#fff !important;
}

.team-trust-content p:last-child {
    margin-bottom: 0;
}

.team-trust-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.team-trust-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 16px 28px;
    border-radius: 999px;
    background: #ff6334;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform .2s ease, opacity .2s ease;
    
}

.team-trust-button:hover,
.team-trust-button:focus {
    color: #ffffff;
    opacity: .9;
    transform: translateY(-1px);
    text-decoration: none;
}

.team-trust-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-trust-right-heading {
    color: #005fa8;
    font-size: clamp(28px, 2vw, 40px);
    line-height: 1.25;
    margin: 0 0 28px;
}

.team-trust-callout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.team-trust-callout-card {
    min-height: 253px;
    border: 1px solid rgba(0, 0, 0, .22);
    border-radius: 30px;
    background: #f7f7f7;
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
}

.team-trust-callout-icon-wrap {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: #ff6334;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 26px;
}

.team-trust-callout-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.team-trust-callout-title {
    color: #005fa8;
    font-size: clamp(19px, 1.3vw, 22px);
    line-height: 1.08;
    font-weight: 500;
    margin: 0;
}

.team-trust-callout-card-link {
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.team-trust-callout-card-link:hover,
.team-trust-callout-card-link:focus {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.team-trust-callout-content {
    color: #005fa8;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.45;
    margin: 14px 0 0;
    max-width: 320px;
}

@media (max-width: 1200px) {
    .team-trust-callouts-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-trust-left {
        min-height: auto;
    }

    .team-trust-heading {
        margin-bottom: 42px;
    }
}

@media (max-width: 767px) {
    .team-trust-callouts-block {
        padding: 36px 0;
    }

    .team-trust-callouts-inner {
        width: min(100% - 30px, 1740px);
    }

    .team-trust-left {
        border-radius: 22px;
        padding: 34px 24px;
    }

    .team-trust-left::before {
        left: -15px;
        width: 92px;
        top: 24%;
    }

    .team-trust-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .team-trust-content {
        font-size: 16px;
        line-height: 1.65;
    }

    .team-trust-button {
        width: 100%;
        min-height: 54px;
    }

    .team-trust-callout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-trust-callout-card {
        min-height: 210px;
        border-radius: 22px;
        padding: 30px 22px;
    }

    .team-trust-callout-icon-wrap {
        width: 88px;
        height: 88px;
        margin-bottom: 22px;
    }

    .team-trust-callout-icon {
        width: 46px;
        height: 46px;
    }
}

