section.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: var(--tablet-gap);
}

section.hero img {
    width: 100%;
    object-fit: fill;
    margin: auto;
    height: 100%;
}

section.hero .col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    /* align-items: stretch; */
    gap: 2rem;
}

section.welcome {
    text-align: center;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}
section.hero a.tile img {
    box-shadow: var(--default-shadow);
}

@media all and (max-width: 1024px) {
    section.hero {
        margin-top: var(--desktop-gap);
    }
    section.hero,
    section.hero .col {
        gap: 1rem;
    }
}

@media all and (max-width: 767px) {
    section.hero .col {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr;
    }
    section.hero {
        grid-template-columns: 1fr;
        margin-top: var(--tablet-gap);
    }
}