.footer-posts.tiled {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-post {
    display: flex;
    gap: 15px;
    height: 60px;
    width: 300px;
}

.footer-post {
    color: var(--footer-text-color)
}

.fp-post-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 100%
}

.fp-post-link {
    display: inline-block;
}

.fp-post-details h4 {
    color: inherit;
    line-height: 1.1;
    margin: 0;
    font-weight: 400;
    font-size: 17px;
}

.fp-post-title a:hover {
    text-decoration: underline 1px var(--footer-link-color);
    color: var(--footer-text-color)
}

.fp-post-date {
    font-size: calc(var(--menu-font-size-desktop) / 1.25);
    opacity: 0.8
}

.tiled .fp-featured-image {
    background-position: center;
    background-size: cover;
    width: 70px;
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--footer-link-color);
}

.fp-featured-image img.fp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width:768px) {
    .fp-post-date {
        font-size: calc(var(--menu-font-size-tablet) / 1.25);
    }
}

@media (max-width:480px) {
    .fp-post-date {
        font-size: calc(var(--menu-font-size-mobile) / 1.25);
    }
}