.fuf-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(1rem, 1fr));
    gap: 1rem;
}

.fuf-grid-post__image {
    aspect-ratio: 1/1;
    background-image: url('img/newsletter-bg.webp');
    background-position: center;
    background-size: cover;
    position: relative;
}

.fuf-grid-post__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.fuf-grid-post__image .age {
    font-family: Georgia,Times,"Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .5px;
    text-align: center;
    line-height: 1;
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem;
}

.fuf-grid-post__image .age small {
    font-size: .6em;
    display: block;
    line-height: .8;
}

.fuf-grid-post__meta h3 {
    margin-top: 0;
    font-family: Georgia,Times,"Times New Roman", serif;
    color: #38818d;
    padding-bottom: 0.5rem;
    border-bottom: solid 2px #e6e6e6;
    margin-bottom: 0.5rem;
}

.fuf-grid-post {
    color: inherit;
    display: flex;
    flex-direction: column;
}

.fuf-grid-post__meta {
    padding: 1rem;
    background-color: #f5f5f5;
    text-align: center;
    flex-grow: 1;
}

.fuf-grid-post__meta .title {
    font-weight: bold;
}

.fuf-post-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.fuf-post-nav-link {
    display: flex;
    align-items: center;
    color: inherit !important;
    gap: 1rem;
}

.fuf-post-nav-label {
    color: #38818d;
    font-weight: bold;
}

.fuf-post-nav-card {
    display: flex;
    background-color: #f5f5f5;
}

.fuf-post-nav-card__image {
    aspect-ratio: 1/1;
    width: 80px;
    position: relative;
    background-image: url('img/newsletter-bg.webp');
    background-position: center;
    background-size: cover;
}

.fuf-post-nav-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.fuf-post-nav-card__meta {
    padding: 0.5rem 1rem;
    font-weight: bold;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overflow-lines-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.fuf-post-nav-card.next,
.fuf-post-nav-link.next {
    flex-direction: row-reverse;
    text-align: right;
}

@media (min-width: 400px) {
    .fuf-grid {
        grid-template-columns: repeat(2, minmax(1rem, 1fr));
    }
}

@media (min-width: 900px) {
    .fuf-grid {
        grid-template-columns: repeat(4, minmax(1rem, 1fr));
    }
}
