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

.map-module-wrap {
    padding: 0 16px;
    margin-bottom: 64px
}

.map-module-wrap .map-module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 16px;
    max-width: 80rem;
    margin: 0 auto;
}

.map-module-wrap .map-module-grid .zone-backdrop {
    grid-column: span 4;
    text-align: center;
    padding: var(--space-md);
    box-shadow: var(--box-shadow);
    border-radius: var(--radius-md);
    background-color: var(--white);
}

.map-module-wrap .map-module-grid .zone-backdrop img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-xxxl);
}

.map-module-wrap .map-module-grid .zone-backdrop ol {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 12px;
    justify-content: space-between;
    padding: 24px;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.map-module-wrap .map-module-grid .zone-backdrop ol li {
    width: calc(50% - 32px);
    margin-bottom: 0;
    font-size: var(--fs-xs);
}

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

@media screen and (min-width: 48rem) {
    .map-module-wrap .map-module-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .map-module-wrap .map-module-grid .zone-backdrop {
        grid-column: span 6;
        padding: var(--space-xl);
    }

    .map-module-wrap .map-module-grid .zone-backdrop ol li {
        width: calc(50% - 32px);
        margin-bottom: 0;
        font-size: var(--fs-sm);
    }

    .map-module-wrap .map-module-grid .zone-backdrop img {
        width: 83.33333%;
    }
}

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

@media screen and (min-width: 80rem) {
    .map-module-wrap {
        margin-bottom: 96px;
    }

    .map-module-wrap .map-module-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .map-module-wrap .map-module-grid .zone-backdrop {
        grid-column: span 12;
        padding: var(--space-xl);
    }

    .map-module-wrap .map-module-grid .zone-backdrop ol  {
        column-gap: 72px;
        max-width: 100%;
    }

    .map-module-wrap .map-module-grid .zone-backdrop ol li {
        width: calc(33% - 48px);
        margin-bottom: 0;
        font-size: var(--fs-sm);
    }
    
}