.blue-container {

    display: flex;
    justify-content: center;
    background-color: #1c75bc;
    padding: 1em;
}

.hero {

    flex-grow: 1;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
}

.hero > div {

    flex-grow: 1;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 1em;
    line-height: clamp(1.5em, 5vw, 3em);
}

.hero > div > span {

    font-style: italic;
    color: #fff;
}

.hero > div > span:first-of-type {

    font-size: 1.25em;
}

img.photo {

    display: block;
    border-radius: 0.25em;
    background: #fff;
    border: 1px solid #fff;
}

.hero > div > span:nth-of-type(1) {

    font-size: clamp(16px, calc(0.7rem + 3.5vw), 60px);
}

.hero > div > span:nth-of-type(2) {

    font-size: clamp(14px, calc(0.7rem + 2.7vw), 50px);
}

.hero > div > span:nth-of-type(3) {

    font-size: clamp(12px, 1.35vw, 20px);
}

.updated {

    opacity: 0.5;
    font-size: 0.75em;
    text-align: center;
}

.welcome-cards {

    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    margin-top: 2em;
    margin-bottom: 1em;
}

a.welcome-card,
a.welcome-card:visited,
a.welcome-card:hover,
a.welcome-card:active {

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 12em;
    padding: 1em;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 0.25em;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    background: #1c75bc;
    border-color: #1c75bc;
}

a.welcome-card:hover {

    background: #7eb058;
    border-color: #cccccc;
}

.welcome-card-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin-bottom: 1.5em;
    box-sizing: border-box;
    border-radius: 50%;
    background: #fff;
}

.welcome-card-icon img {

    max-width: 2em;
    max-height: 2em;
}

.welcome-card-title {

    color: #fff;
    transition: color 0.2s ease;
}

.welcome-card-more {

    position: absolute;
    right: 1em;
    top: 1em;
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

@media (min-width: 850px){

    .blue-container {

        padding: 5em;
    }

    .hero {

        flex-direction: row;
    }

    .hero > div {

        padding: 0;
    }

    img.photo {

        max-width: 33%;
    }

    .welcome-cards {

        gap: 2em;
        margin-bottom: 2em;
    }

    .welcome-cards {

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .welcome-card-title {

        font-size: 1.25em;
    }
}
