.std50-my-post-list.post-item {}
.std50-my-post-list.post-item a {
	text-decoration: none;
}
.std50-my-post-list.post-item .std50-my-post-inner {
	background-color: #ffffff;
	box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.05);
	border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    overflow: hidden;
}
.std50-my-post-inner {
	padding: 1.5em;
}
.std50-my-post-content {
	padding-left: 0;
    padding-right: 0;
}
.std50-my-post-featured-section {
	padding-left: 0;
    padding-right: 0;
	margin-bottom: 1.5em;
}
.std50-my-post-thumb-img-content {
	padding-left: 0;
    padding-right: 0;
	margin-left: -1.5em;
    margin-right: -1.5em;
	margin-top: -1.5em;
	overflow: hidden;
}
.std50-my-post-content .post-list-widget-title {
	font-size: 1.25rem;
	margin-bottom: 0.6em;
	line-height: 1.3;
}
.std50-my-post-list .std50-my-post-thumb-img-content img {
	transform: scale(1);
    transition: transform .5s ease;
}
.std50-my-post-list:hover .std50-my-post-thumb-img-content img {
    transform: scale(1.1);
}
.std50-my-post-content .std50-my-post-single-element a {
    font-size: 0.875rem;
	color: var(--ast-global-color-0);
}
.std50-my-post-entry-meta, .std50-my-post-entry-meta * {
    line-height: 1.45;
    color: var(--ast-global-color-0);
    font-weight: 600;
	font-size: 0.8125rem;
}

.post-list-widget {
    margin: 20px 0;
    display: grid;
/*     gap: 20px; */
}

.post-item {
/*     border: 1px solid #ddd; */
/*     padding: 10px; */
/*     border-radius: 5px; */
/*     background: #f9f9f9; */
	padding: 0 1em 0;
	margin-bottom: 2em;
    border-bottom: 0;
    background-color: transparent;
}

.post-item a {
    text-decoration: none;
    color: #333;
}

.post-item a:hover {
    color: #0073e6;
}

@media (min-width: 1025px) {
    .post-list-widget {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .post-list-widget {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .post-list-widget {
        grid-template-columns: repeat(1, 1fr);
    }
}
