/* ---------- mobile ---------- */

.listing-module {
    margin-bottom: 96px;
}

.listing-module .listing-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.listing-module .listing-wrapper .listing-container {
    text-align: center;
}

.listing-module .listing-wrapper .listing-container h2 {
    margin-bottom: 72px;
}

.listing-module .listing-wrapper .listing-container p {
    margin-bottom: 48px;
}

.listing-module .listing-wrapper .listing-container li {
    margin-bottom: 24px;
}

.listing-module .listing-wrapper .listing-container a {
    color: #000000;
    font-weight: 300 !important;
    font-family: 'radio canada';
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}

.listing-module .listing-wrapper .listing-container li a span img {
    display: block;
    width: 2.5rem;
}

/* ---------- tablet ---------- */

@media screen and (min-width: 48rem) {
    .listing-module .listing-wrapper .listing-container ul {
        max-width: fit-content;
        margin: 0 auto;
    }

    .listing-module .listing-wrapper .listing-container a {
    
        flex-direction: row;
        gap: 1rem;
    }

    .listing-module .listing-wrapper .listing-container li a span img {
        width: 3rem;
    }
}

/* ---------- laptop ---------- */

@media screen and (min-width: 90rem) {
    .listing-module {
        margin-bottom: 192px;
    }
    
    .listing-module .listing-wrapper .listing-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .listing-module .listing-wrapper .listing-container h2 {
        grid-column: 3 / span 8;
        grid-row: 1;
    }

    .listing-module .listing-wrapper .listing-container p {
        grid-row: 2;
        grid-column: 2 / span 10;
    }

    .listing-module .listing-wrapper .listing-container ul {
        grid-row: 3;
        grid-column: 2 / span 10;
    }
}