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

.hero-module  {
    position: relative;
}

.hero-module::after {
    /*background: linear-gradient(180deg, #deedce00 16.66666%, #deedceff 41.66666%);*/
    /*background-color: #deedce;*/
    content: '';
    height: 91.66666%;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.hero-module .hero-wrapper .hero-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    padding-top: 66.5px;
    text-align: center;
    position: relative;
    background-image: url('https://redtoucan-admin.azurewebsites.net/media/15tkjh4l/hero-mobile.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.hero-module .hero-wrapper .hero-container .description {
    height: 100%;
    z-index: 99;
}

.hero-module .hero-wrapper .hero-container .description .tagline {
    margin-bottom: 48px;
}

.tagline h1 {
    background: #deedce;
    padding: 36px 12px;
}

.tagline h3 {
    background-color: #deedce;
    padding-top: 36px;
}

.explore-pdfs {
    padding-left: 24px;
    padding-right: 24px;
}

.hero-module .hero-wrapper .hero-container .description .explore-pdfs p {
    margin-bottom: 24px;
}

.hero-module .hero-wrapper .hero-container .description .explore-pdfs .pdf-split-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-module .hero-wrapper .hero-container .description .explore-pdfs .pdf-split-group a {
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid black;
    width: 100%;
    color: #000000;
    text-decoration: none;
    border-radius: 6rem;

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

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

@media screen and (min-width: 48rem) {
    .hero-module .hero-wrapper {
        background-image: url('https://redtoucan-admin.azurewebsites.net/media/dv3jvqlx/hero-tablet.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero-module .hero-wrapper .hero-container {
        background-image: none;
        aspect-ratio: 16 / 9;
    }

    .tagline h1 {
        padding: 24px;
    }

    .tagline h3 {
        background-color: #deedce;
        padding-top: 24px;
    }

    .hero-module .hero-wrapper .hero-container .description .explore-pdfs .pdf-split-group a {
        max-width: 14rem;
        padding: 12px 24px;
    }
}

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

@media screen and (min-width: 90rem) {
    .hero-module .hero-wrapper .hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-module .hero-wrapper .hero-container .description {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
        align-items: flex-end;
        padding-bottom: 96px;
        
        background-color: #deedce;
        height: auto;
        margin-top: auto;
        margin-bottom: 0rem;
        border-radius: 2rem;
        padding-top: 36px;
    }

    .hero-module .hero-wrapper .hero-container .description .tagline {
        grid-column: span 7;
        text-align: left;
        padding-left: 24px;
    }

    .hero-module .hero-wrapper .hero-container .description .tagline h1 {
        padding: 0;
    }

    .hero-module .hero-wrapper .hero-container .description .tagline h3 {
        padding: 0;
    }
    
    .hero-module .hero-wrapper .hero-container .description .explore-pdfs {
        grid-column: span 5;
    }

    .hero-module .hero-wrapper .hero-container .description .explore-pdfs {
        text-align: left;
    }

    .hero-module .hero-wrapper .hero-container .description .explore-pdfs .pdf-split-group {
        flex-direction: column;
    }

    .hero-module .hero-wrapper .hero-container .description .explore-pdfs .pdf-split-group a {
        max-width: 20rem;
        background-color: #000000;
        color: #ffffff;
        text-align: center;
    }

    .hero-module .hero-wrapper .hero-container .description .explore-pdfs .pdf-split-group a:last-of-type {
        display: none;
    }
}

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

@media screen and (max-width: 767px) {
    .hero-module .hero-wrapper .hero-container .description .explore-pdfs p {
        margin-bottom: 48px;
    }
}