/* SPW Post Widget - Okunabilir Styles */
.spw-post-widget {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.spw-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.spw-post-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 0;
}

.spw-post-item:last-child {
    margin-bottom: 0;
}

.spw-post-thumbnail {
    flex-shrink: 0;
    margin-right: 10px;
}

.spw-post-thumbnail img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.spw-post-content {
    flex: 1;
    min-width: 0;
}

.spw-post-title {
    margin: 0 0 3px 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: normal;
}

.spw-post-title a {
    color: #333333 !important;
    text-decoration: none !important;
    font-weight: normal;
    opacity: 1 !important;
}

/* Hover efektlerini tamamen engelle */
.spw-post-title a:hover,
.spw-post-title a:focus,
.spw-post-title a:active,
.spw-post-title a:visited {
    color: #333333 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    background: none !important;
    transform: none !important;
}

.spw-post-item:hover,
.spw-post-item:focus,
.spw-post-item:active {
    background: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.spw-post-thumbnail:hover img,
.spw-post-thumbnail:focus img,
.spw-post-thumbnail:active img {
    transform: none !important;
    opacity: 1 !important;
}

.spw-post-date {
    font-size: 11px;
    color: #999;
    margin: 0;
}

.spw-post-excerpt {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .spw-post-thumbnail img {
        width: 50px;
        height: 38px;
    }
    
    .spw-post-title {
        font-size: 13px;
    }
    
    .spw-post-date {
        font-size: 10px;
    }
}