.frontnavsec {
    text-align: center;
}

.frontnavheader {
    text-decoration: underline;
    margin-bottom: 1.5rem;
}

.frontnavcontainer {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 1rem;
    text-align: left;
    justify-content: space-around;
    max-width: 100%;
}

.frontnavcontainer > a {
    color: inherit;
    text-decoration: none;
}

.frontnavitem {
    margin-bottom: 0;
    box-sizing: border-box;
    width: 350px;
    max-width: 100%;
    opacity: 1;
    transition: opacity 0.3s;
}

.frontnavitem p { margin-top: 0.25rem; }
a .frontnavitem:hover {
    opacity: 0.6;
}

.frontnavimg {
    height: 100%;
    float: left;
}

.frontnavitem img {
    border-radius: 10px;
    border-bottom: 2px solid #000;
    margin-right: 7px;
    max-width: 100px;
    max-height: 100px;
}

.frontnavitem h3 {
    background: #242629;
    border-radius: 10px;
    border-bottom: 2px solid #000;
    color: #FFF;
    padding: 0.5rem 0;
    margin: 0 0 8px;
}

.frontnavitem ul {
    list-style-type: none;
}

@media all and (max-width: 780px) {

    .frontnavcontainer { grid-template-columns: auto;}

    /*
    .frontnavitem { text-align: center; }

    .frontnavimg {
        float: none;
        height: initial;
    }

    .frontnavitem img {
        border: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        display: block;
        margin: 0 auto;
        box-shadow: 0 0 2px #000;
    }
    */
}