.fpo-container {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}


.fpo-post {
    display: block;
    cursor: pointer;
}

.fpo-post-image {
    aspect-ratio: 16/9;
    width: 100%;
    margin-bottom: 1rem;
}

.fpo-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fpo-post-read-more {}

.fpo-post-read-more a {
    display: inline-block;
    margin-top: .5rem;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    border-bottom: 2px solid #bbb;
    text-underline-offset: 8px;
    position: relative;
}

.fpo-post-read-more a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    background-color: #24618E;
    height: 2px;
    transition: width .25s ease-in-out;
}

.fpo-post-read-more a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 100%;
}




/* media query container for 768px and below */

@media only screen and (max-width: 768px) {
    .fpo-container {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .fpo-post-excerpt {
        font-size: 1rem;
    }


}