
/* Demoiselle Raffinée — reassurance strip */
.site-footer {
    background: #171516;
    color: #fff;
}

.dr-trust-strip {
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: #1c191a;
}

.dr-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.dr-trust-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px 18px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.dr-trust-item:first-child {
    padding-left: 0;
}

.dr-trust-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.dr-trust-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    opacity: .82;
}

.dr-trust-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dr-trust-item strong,
.dr-trust-item small {
    display: block;
}

.dr-trust-item strong {
    font-size: .70rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 700;
}

.dr-trust-item small {
    margin-top: 4px;
    color: rgba(255,255,255,.52);
    font-size: .67rem;
    line-height: 1.35;
}

.dr-footer-main {
    padding: 28px 0;
}

.dr-footer-main p {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: .68rem;
    letter-spacing: .04em;
}

@media (max-width: 900px) {
    .dr-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-trust-item,
    .dr-trust-item:first-child,
    .dr-trust-item:last-child {
        padding: 18px 14px;
        border-right: 1px solid rgba(255,255,255,.09);
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .dr-trust-item:nth-child(2n) {
        border-right: 0;
    }

    .dr-trust-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 520px) {
    .dr-trust-item,
    .dr-trust-item:first-child,
    .dr-trust-item:last-child {
        padding: 16px 8px;
        gap: 9px;
    }

    .dr-trust-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .dr-trust-icon svg {
        width: 20px;
        height: 20px;
    }

    .dr-trust-item strong {
        font-size: .62rem;
        letter-spacing: .06em;
    }

    .dr-trust-item small {
        font-size: .60rem;
    }

    .dr-footer-main {
        padding: 22px 0;
    }
}
