/* Trustbar zwischen Hero und Inhalt der Restnutzungsdauer-Seite */
.rnd-trust-strip {
    background: #ffffff;
    border-top: 1px solid #e8e1d2;
    border-bottom: 1px solid #e8e1d2;
    padding: 32px 0;
}

.rnd-trust-strip .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.rnd-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.rnd-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 58px;
}

.rnd-trust-icon {
    width: 36px;
    height: 36px;
    color: #b89b5e;
    flex: 0 0 36px;
}

.rnd-trust-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.3;
}

.rnd-trust-value {
    color: #1f344d;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.rnd-trust-label {
    color: #5c5c5c;
    font-size: 0.85rem;
    margin-top: 2px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .rnd-trust-strip {
        padding: 28px 0;
    }

    .rnd-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 18px;
    }
}

@media (max-width: 480px) {
    .rnd-trust-strip .container {
        padding: 0 20px;
    }

    .rnd-trust-grid {
        gap: 20px 14px;
    }

    .rnd-trust-item {
        align-items: flex-start;
        gap: 8px;
        min-height: 0;
    }

    .rnd-trust-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .rnd-trust-value {
        font-size: 0.86rem;
    }

    .rnd-trust-label {
        font-size: 0.74rem;
    }
}

@media (max-width: 350px) {
    .rnd-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
