.wrap-custom-show-posts {
    width: 100%;
    position: relative;
}

.wrap-custom-show-posts .posts-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.wrap-custom-show-posts .posts-row .wrap-post {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
	background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	overflow: hidden;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-image {
    width: 100%;
    position: relative;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-image figure {
    aspect-ratio: auto;
    width: 100%;
    height: 270px;
	margin: 0;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-image figure a {
    height: 100%;
    display: block;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-image figure a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
    max-width: 100%;
    vertical-align: bottom;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-info {
    margin-top: 20px;
    padding: 0 20px 18px;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-info a {
    color: #2a2e37;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
	padding-top: 10px;
}

.wrap-custom-show-posts .posts-row .wrap-post .post-info .excerpt {
    margin-top: 8px;
    color: #707682;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
    padding-bottom: 10px;
    font-family: var(--wp--preset--font-family--inter);
}

@media only screen and (max-width: 767px) {
	.wrap-custom-show-posts .posts-row {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}