.qing-trust-strip {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.qing-trust-strip__container {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

@media (min-width: 640px) {
    .qing-trust-strip__container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .qing-trust-strip__container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.qing-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

@media (min-width: 768px) {
    .qing-trust-strip__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.qing-trust-strip__cell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    border-right: 1px solid #f3f4f6;
    transition: background 0.35s ease;
    cursor: default;
    min-width: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .qing-trust-strip__cell {
        gap: 1.1rem;
        padding: 2rem 2.25rem;
    }
}

.qing-trust-strip__cell:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    .qing-trust-strip__cell:nth-child(2n) {
        border-right: none;
    }
    .qing-trust-strip__cell:nth-child(n+3) {
        border-top: 1px solid #f3f4f6;
    }
}

.qing-trust-strip__cell::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #196eca;
    transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}

.qing-trust-strip__cell:hover {
    background: #fafafa;
}

.qing-trust-strip__cell:hover::after {
    width: 100%;
}

.qing-trust-strip__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    color: #196eca;
    font-size: 1.1rem;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

@media (max-width: 767px) {
    .qing-trust-strip__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .qing-trust-strip__icon svg {
        width: 16px;
        height: 16px;
    }

    .qing-trust-strip__num {
        font-size: 1.25rem;
    }

    .qing-trust-strip__num .suffix {
        font-size: 0.75rem;
    }

    .qing-trust-strip__label {
        font-size: 8px;
        letter-spacing: 0.15em;
    }
}

.qing-trust-strip__cell:hover .qing-trust-strip__icon {
    background: #0f1d2f;
    border-color: #0f1d2f;
    color: #196eca;
    transform: rotate(-6deg) scale(1.05);
}

.qing-trust-strip__icon svg {
    width: 22px;
    height: 22px;
}

.qing-trust-strip__num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.65rem;
    color: #0f1d2f;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.qing-trust-strip__num .suffix {
    font-size: 1rem;
    color: #196eca;
    font-style: italic;
}

.qing-trust-strip__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #9ca3af;
    margin-top: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}
