/* =========================================
   TRUST STANDARDS STRIP (HORIZONTAL)
========================================= */

.standards-strip {
    padding: 5px 0;
    background: #f7fafc;
}

/* main bar */
.standards-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    padding: 16px 20px;

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.standard-card {
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s ease;
}

.standard-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* item */
.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;

    white-space: nowrap;
}

/* icon */
.strip-item i {
    color: #14b8a6;
    font-size: 16px;
}

/* divider */
.strip-divider {
    width: 1px;
    height: 22px;
    background: #e2e8f0;
    margin: 0 18px;
}

/* hover subtle effect */
.strip-item:hover {
    color: #14b8a6;
    cursor: default;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .standards-strip-inner {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-start;
    }

    .strip-divider {
        display: none;
    }

    .strip-item {
        width: 48%;
    }
}

@media (max-width: 600px) {

    .strip-item {
        width: 100%;
    }
}