.styled-post-list {
/*    outline: 1px solid red; peenhäälestuse rida*/ 
		font-size: 12px;
/*	 height: 310px; */
}

.styled-post-list ul {
    list-style: none;
    padding: 0;
}

.styled-post-list li {
    margin-bottom: 3px;
}

.post-date {
    font-size: 11px;
    color: #777;
}

.sne-read-more {
    margin-top: 4px;
}

.sne-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sne-skeleton-item {
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(90deg, #eeeeee 25%, #dddddd 37%, #eeeeee 63%);
    background-size: 400% 100%;
    animation: sne-skeleton-loading 1.4s ease infinite;
}

.sne-skeleton-item::before {
    content: "";
    display: block;
    height: 14px;
    width: 70%;
    margin: 8px 12px;
    background: #e0e0e0;
    border-radius: 4px;
}

.sne-skeleton-item::after {
    content: "";
    display: block;
    height: 10px;
    width: 40%;
    margin: 6px 12px;
    background: #d6d6d6;
    border-radius: 4px;
}

@keyframes sne-skeleton-loading {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

