/***** Space *****/

.space {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        120deg,
        rgba(43, 45, 49, 0.94),
        rgba(30, 31, 34, 0.94)
    );
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 56px 0;

    p {
        width: min(960px, 92%);
        margin: 0;
        text-align: center;
        font-size: clamp(1.2rem, 2.4vw, 1.75rem);
        font-weight: 700;
        letter-spacing: 0.01em;
        color: var(--text);
        line-height: 1.45;

        i {
            font-size: 1.4rem;
            margin: 0 0.75rem;
            position: relative;
            top: 1px;
            color: var(--accent);
        }
    }
}

/***** Responsive Mobile *****/

@media screen and (max-width: 768px) {
    .space {
        min-height: 160px;
        margin: 42px 0;

        p {
            width: 92%;
            font-size: 1.1rem;

            i {
                display: none;
            }
        }
    }
}

/***** Responsive Tablette *****/

@media screen and (max-width: 990px) and (min-width: 769px) {
    .space p {
        width: 90%;
        font-size: 1.35rem;

        i {
            display: none;
        }
    }
}
