/**
 * Block: Trust Strip - Styles
 */

/* ─── Block Wrapper ───────────────────────────────── */

.trust-strip-block {
    padding: 0;
}

/* ─── Strip Container ─────────────────────────────── */

.lp1-trust-strip {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 1024px) {
    .lp1-trust-strip {
        padding: 6rem 0;
    }
}

/* ─── Grid Layout ─────────────────────────────────── */

.lp1-trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    justify-items: center;
}

@media (min-width: 640px) {
    .lp1-trust-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp1-trust-strip-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* ─── Item ────────────────────────────────────────── */

a.lp1-trust-strip-item {
    text-decoration: none;
}

a.lp1-trust-strip-item:hover .lp1-trust-strip-text {
    color: #C00;
}

.lp1-trust-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

/* ─── Icon ────────────────────────────────────────── */

.lp1-trust-strip-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background-color: #012854;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .lp1-trust-strip-icon {
        width: 200px;
        height: 200px;
    }
}

.lp1-trust-strip-item:hover .lp1-trust-strip-icon {
    transform: translateY(-4px);
}

/* Image mode */
.lp1-trust-strip-icon--image {
    background-color: #ffffff;
    padding: 12px;
}

.lp1-trust-strip-icon--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ─── Text ────────────────────────────────────────── */

.lp1-trust-strip-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 160px;
}

/* ─── Infinite Scroll Mode ────────────────────────── */

.lp1-trust-strip--scroll {
    padding: 3rem 0;
    overflow: hidden;
}

.lp1-trust-strip-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.lp1-trust-strip-scroll-track {
    display: flex;
    gap: 15rem;
    width: max-content;
    animation: lp1TrustScroll 30s linear infinite;
}

@media (max-width: 1024px) {
    .lp1-trust-strip-scroll-track {
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .lp1-trust-strip-scroll-track {
        gap: 2.5rem;
    }
}

.lp1-trust-strip-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes lp1TrustScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lp1-trust-strip--scroll .lp1-trust-strip-item {
    flex-shrink: 0;
}
