/**
 * Pasek zaufania Madlen.
 *
 * Mobile-first:
 * - trzy elementy obok siebie,
 * - kompaktowa typografia,
 * - ikony nad tekstem.
 *
 * Desktop:
 * - większe odstępy,
 * - ikona obok tekstu.
 */


/* ============================================================
 * SEKCJA
 * ============================================================ */

.trust {
    position: relative;

    padding-top: 0;
    padding-bottom: 2.75rem;

    background: var(--madlen-color-white);
}


/* ============================================================
 * PANEL
 * ============================================================ */

.trust__panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;

    width: 100%;

    background: var(--madlen-color-surface);
    border: 1px solid var(--madlen-color-border);
    border-radius: 1rem;

    overflow: hidden;
}


/* ============================================================
 * ELEMENT
 * ============================================================ */

.trust__item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;

    min-width: 0;
    padding: 1rem 0.375rem;

    text-align: center;
}

.trust__item + .trust__item {
    border-left: 1px solid var(--madlen-color-border);
}


/* ============================================================
 * IKONA
 * ============================================================ */

.trust__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 2.75rem;
    height: 2.75rem;

    background: var(--madlen-color-white);
    border: 1px solid var(--madlen-color-border);
    border-radius: 50%;
}

.trust__icon svg {
    display: block;

    width: 1.75rem;
    height: 1.75rem;
}

.trust__icon--petrol {
    color: var(--madlen-color-brand);
}

.trust__icon--gold {
    color: var(--madlen-color-accent);
}


/* ============================================================
 * TEKST
 * ============================================================ */

.trust__text {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;

    min-width: 0;
    margin: 0;

    line-height: 1.2;
}

.trust__text strong {
    display: block;

    color: var(--madlen-color-heading);

    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.2;
}

.trust__text span {
    display: block;

    color: var(--madlen-color-muted);

    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.25;
}


/* ============================================================
 * BARDZO WĄSKIE TELEFONY
 * ============================================================ */

@media (max-width: 22rem) {
    .trust__item {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .trust__icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .trust__icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .trust__text strong {
        font-size: 0.625rem;
    }

    .trust__text span {
        font-size: 0.5625rem;
    }
}


/* ============================================================
 * WIĘKSZY MOBILE
 * ============================================================ */

@media (min-width: 36rem) {
    .trust__item {
        gap: 0.75rem;

        padding: 1.25rem 0.75rem;
    }

    .trust__icon {
        width: 3rem;
        height: 3rem;
    }

    .trust__icon svg {
        width: 1.875rem;
        height: 1.875rem;
    }

    .trust__text strong {
        font-size: 0.8125rem;
    }

    .trust__text span {
        font-size: 0.6875rem;
    }
}


/* ============================================================
 * TABLET / DESKTOP
 * ============================================================ */

@media (min-width: 48rem) {
    .trust {
        padding-bottom: 4rem;
    }

    .trust__panel {
        border-radius: 1.125rem;
    }

    .trust__item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;

        padding: 1.5rem 1rem;

        text-align: left;
    }

    .trust__icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .trust__icon svg {
        width: 2.125rem;
        height: 2.125rem;
    }

    .trust__text strong {
        font-size: 0.875rem;
    }

    .trust__text span {
        font-size: 0.75rem;
    }
}


/* ============================================================
 * SZEROKI DESKTOP
 * ============================================================ */

@media (min-width: 64rem) {
    .trust__item {
        padding: 1.625rem 1.5rem;
    }

    .trust__text strong {
        font-size: 0.9375rem;
    }

    .trust__text span {
        font-size: 0.8125rem;
    }
}
