﻿.trust-strip {
    background: #ffffff;
    border-top: 1px solid #e5eaf1;
    border-bottom: 1px solid #e5eaf1;
    padding: 18px 0;
    font-family: 'Poppins', sans-serif;
}

.trust-container {
    width: min(94%, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 280px;
}

.trust-logo-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    color: #0b1f4d;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.trust-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-score {
    color: #0b1f4d;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-count {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background: #dbe2ec;
}

@media (max-width: 992px) {

    .trust-container {
        flex-direction: column;
        gap: 18px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .trust-rating-row {
        justify-content: center;
    }

    .trust-logo-img {
        width: 50px;
        height: 50px;
    }
}