.nw-latest-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nw-latest-posts__item {
    display: flex;
    flex-direction: column;
	background: #fff;
	border-radius: 15px;
    overflow: hidden;
	box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}

.nw-latest-posts__thumb {
	overflow: hidden;
}

.nw-latest-posts__item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
	transform: scale(1);
    transition: transform .5s ease;
}

.nw-latest-posts__item:hover img{
	transform: scale(1.1);
}

.nw-latest-posts__item h3 {
    font-size: 1.9rem;
    margin: 1rem 14px;
    line-height: 1;
}

.nw-latest-posts__item h3 a {
    color: inherit;
    text-decoration: none;
}

.nw-latest-posts__item .ast-read-more-container{
	margin: auto 14px 18px;
}

@media (max-width: 676px) {
    .nw-latest-posts{
        grid-template-columns: 1fr;
    }
}