.footerWrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .footerWrapper {
        padding: 5rem 2rem;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .footerWrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 5rem 3rem;
        gap: 1.5rem;
    }
}

@media (min-width: 1500px) {
    .footerWrapper {
        padding: 5rem;
    }
}

.footerWrapper .footerCol {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--alt);
}

@media (min-width: 768px) {
    .footerWrapper .footerCol {
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .footerWrapper .footerCol {
        align-items: flex-start;
        text-align: left;
    }
}

.footerWrapper .footerCol h5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--darkBlue);
    text-transform: uppercase;
}

.footerWrapper .footerCol h5 svg {
    fill: var(--lightBlue);
    width: fit-content;
    height: 3px;
}

.footerWrapper .footerCol p {
    max-width: 20rem;
    font-size: 1rem;
    line-height: 150%;
}

.footerWrapper .socialLinks ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerWrapper .socialLinks ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: #d9d9d9;
    transition: var(--ease);
}

@media (min-width: 1200px) {
    .footerWrapper .socialLinks ul a {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.footerWrapper .socialLinks ul a svg {
    width: 50%;
    height: 50%;
    fill: var(--darkBlue);
    transition: var(--ease);
}

.footerWrapper .socialLinks ul a:hover {
    background: var(--lightBlue);
}

.footerWrapper .socialLinks ul a:hover svg {
    fill: var(--light);
}

.footerWrapper .colTwo ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerWrapper .colTwo ul a {
    font-weight: 500;
    color: var(--alt);
    transition: var(--ease);
}

.footerWrapper .colTwo ul a:hover {
    color: var(--lightBlue);
}

.footerWrapper .colThree ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerWrapper .colThree ul a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--heading);
    font-size: 1rem;
    color: var(--alt);
    transition: var(--ease);
}

@media (min-width: 768px) {
    .footerWrapper .colThree ul a {
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .footerWrapper .colThree ul a {
        flex-direction: row;
    }
}

.footerWrapper .colThree ul a svg {
    background: var(--lightBlue);
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    fill: var(--light);
    transition: var(--ease);
}

.footerWrapper .colThree ul a:hover {
    color: var(--darkBlue);
    transform: translateY(-0.2rem);
}

.footerWrapper .colThree ul a:hover svg {
    background: var(--darkBlue);
}

.footerWrapper .footerPostWrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footerWrapper .footerPost {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.footerWrapper .footerPost .postThumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    position: relative;
    overflow: hidden;
}

.footerWrapper .footerPost .postThumbnail img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: var(--ease);
}

.footerWrapper .footerPost .postContent {
    flex-basis: calc(100% - 5rem);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footerWrapper .footerPost .postContent p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--alt);
}

.footerWrapper .footerPost .postContent h6 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    max-width: 85%;
}

.footerWrapper .footerPost .postContent h6 a {
    color: var(--darkBlue);
}

.footerWrapper .footerPost .postContent a {
    color: var(--lightBlue);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-family: var(--heading);
    font-weight: 500;
}

.footerWrapper .footerPost:hover img {
    filter: grayscale(0%);
}