/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

.wp-block-latest-posts__featured-image img {
    height: 410px !important;
    max-width: 100%;
    width: 410px;
    object-fit: cover;
}
.wp-block-latest-posts__post-title {font-size: 36px}



.custom-latest-posts-list {
    display: flex;
	display: grid;
    flex-wrap: wrap;
    gap: 2rem;
	grid-template-columns: repeat(3, 1fr);
}

.custom-latest-post {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    flex: 1;
}

.custom-thumb-wrap img {
    //width: 150px;
    height: auto;
}

.custom-excerpt {
    flex: 1;
}












