.trust-features-block {
    width: 100%;
    padding: 4rem 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.trust-features-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.02) 10px,
        rgba(0, 0, 0, 0.02) 20px
    );
    pointer-events: none;
}

.trust-features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-features-content {
    display: flex;
    flex-direction: column;
}

.trust-features-left {
    /* Left side can be used for image placeholder */
    margin-bottom: 32px;
}

.trust-features-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 333 / 244;
}

.trust-features-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-features-right {
    display: flex;
    flex-direction: column;
}

.trust-features-heading {
    font-size: 1.5rem;
    color: var(--gold-100);
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}

.trust-features-grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}

.trust-features-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px
}

.trust-features-item-title {
    font-size: 1.125rem;
    font-family: var(--wp--preset--font-family--avenir);
    font-weight: 800;
    color: var(--neautral-200);
    margin-bottom: 1rem;
    text-transform: none;
}

.trust-features-item-description {
    font-size: 1rem;
    color: var(--neautral-300);
    margin: 0;
}

.trust-features-trustpilot {
    margin-bottom: 142px;
}

.trust-features-trustpilot * {
    max-width: 100%;
}

/* Responsive */

@media (max-width: 559px) {
    .trust-features-left {
        height: 348px;
    }
}
@media (min-width: 560px) {
    .trust-features-left {
        height: 348px;
    }
}

@media ( min-width: 768px) {
    .trust-features-header {
        margin-bottom: 32px;
        align-items: center;
    }
    .trust-features-heading {
        font-size: 1.75rem;
    }
    .trust-features-content {
        display: block;
        position: relative;
        height: 548px;
    }
    .trust-features-left {
        position: relative;
        z-index: 0;
        height: stretch;
        margin-bottom: 0;
    }
    .trust-features-image {
        position: relative;
        z-index: 0;
        height: stretch;
        width: fit-content;
    }
    .trust-features-left:after {
        content:" ";
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        display: block;
        background: linear-gradient(89.48deg, rgba(0, 0, 0, 0) 26.83%, 
        rgba(8, 8, 10, 0.563093) 42.36%, 
        rgba(11, 10, 13, 0.7315) 48.34%,
         rgba(12, 11, 15, 0.815861) 51.7%, 
         rgba(13, 12, 16, 0.881241) 55.74%,
          rgba(14, 13, 17, 0.945784) 59.14%, 
          #0F0E12 62.71%);

    }
    .trust-features-right {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
        max-width: 560px;
    }
    .trust-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 1rem;
        margin-bottom: 24px;
    }
    .trust-features-item {
        margin-bottom: 0;
    }
    .trust-features-trustpilot {
        margin-bottom: 60px;
    }
}

@media ( min-width: 1024px) {
    .trust-features-content {
        height: 532px;
    }
    .trust-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 1rem;
        margin-bottom: 44px;
    }
    .trust-features-image {
        height: stretch;
        width: 70%;
    }
}

@media ( min-width: 1280px) {
    .trust-features-content {
        height: 616px;
    }
    .trust-features-grid {
        margin-bottom: 64px;
    }
}

@media ( min-width: 1440px) {
    .trust-features-block {
        padding: 8rem 1rem 7rem;
    }
    .trust-features-header {
        margin-bottom: 42px;
    }
    .trust-features-heading {
        font-size: 1.875rem;
    }
    .trust-features-image {
        width: calc(70% + 2px);
    }
    .trust-features-grid {
        gap: 32px 3rem;
    }
}