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

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

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

.base-module .base-wrapper .base-container h2 {
    text-align: center;
    margin-bottom: 72px;
}

.base-module .base-wrapper .base-container p {
    text-align: center;
    margin-bottom: 72px;
}

.base-module .base-wrapper .base-container a {
    display: block;
    color: #000000;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid black;
    width: 100%;
    color: #000000;
    text-decoration: none;
    border-radius: 6rem;
    font-weight: normal;
    max-width: 30rem;
    margin: 0 auto;
    text-align: center;

    &:hover {
        filter: invert(1);
    }
}

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

@media screen and (min-width: 48rem) {}

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

@media screen and (min-width: 90rem) {
    .base-module {
        margin-bottom: 192px;
    }

    .base-module .base-wrapper .base-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

   .base-module .base-wrapper .base-container * {
        grid-column: 2 / span 10;
    }

    .base-module .base-wrapper .base-container a:hover {
        background-color: #000000;
        color: #ffffff;
    }
}