css to be created echo '<style>
.fl-grid-loop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.fl-post {
    border: 1px solid var(--fl-border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--fl-bg-color);
}

.post-thumbnail {
    height: 250px;
    background: var(--fl-bg-secondary);
}

.post-thumbnail img {
    width: 500px;
    height: 100%;
    object-fit: cover;
	/*align-content: left;*/
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.03);
}

.post-content {
    padding: 15px;
	max-width: 100%;
	align-self: center;
}

.post-title {
    margin: 0;
    font-size: 1.1em;
	text-align: center;
}

.post-title a {
    color: var(--fl-heading-color);
    text-decoration: none;
    display: block;
}

@media (max-width: 600px) {
    .fl-grid-loop {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

</style>'