.webeasy-smart-posts .webeasy-post-card {
border-radius: 1rem;
overflow: hidden;
transition: transform .2s ease, box-shadow .2s ease;
}
.webeasy-smart-posts .webeasy-post-card:hover {
transform: translateY(-4px);
box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.12) !important;
}
.webeasy-smart-posts .webeasy-post-thumb img {
height: 190px;
width: 100%;
object-fit: cover;
}
.webeasy-smart-posts h3 a {
color: #212529;
}
.webeasy-smart-posts h3 a:hover {
color: #dc3545;
}
.webeasy-slp-skeleton-title,
.webeasy-slp-skeleton-card {
background: linear-gradient(90deg, #eeeeee 25%, #f7f7f7 50%, #eeeeee 75%);
background-size: 200% 100%;
animation: webeasySlpPulse 1.2s infinite;
border-radius: 1rem;
}
.webeasy-slp-skeleton-title {
width: 240px;
height: 32px;
margin-bottom: 1.5rem;
}
.webeasy-slp-skeleton-card {
height: 320px;
}
@keyframes webeasySlpPulse {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}