.base-layout-wrapper footer {
    background-color: var(--footer-background-color);
}

footer {
    /* flex properties */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: flex-start;
    gap: 0.5rem;

    /* other */
    border-top: 1px solid lightgray;
    padding: 1rem 0px 0px 0px;

    .icon {
        max-height: 1.4em;
        max-width: 1.4em;
    }

    .company-name p {
        margin: 0px;
        font-size: 2rem;
        line-height: 2rem;
    }

    p {
        margin: 0px;
        font-size: 1rem;
    }

    > * {
        /* border-left: 1px solid lightgray; */
        /* border-right: 1px solid lightgray; */
        padding: 0.5rem;
    }

    .section-heading {
        text-decoration: underline double gray;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    /* > *:first-child { */
    /*     border-left: none; */
    /* } */
    /* > *:last-child { */
    /*     border-right: none; */
    /* } */
}
