/* Simple Trending Posts Widget */
.ptp-trending-wrapper {
    background: #ffffff;
    padding: 0;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header */
.ptp-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ptp-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Posts List */
.ptp-posts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Post Item - Simple layout with thumbnail left, title right */
.ptp-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.ptp-post-item:last-child {
    border-bottom: none;
}

.ptp-post-item:hover {
    background: #fafafa;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 -5px;
    border-radius: 4px;
}

/* Thumbnail */
.ptp-post-thumbnail {
    flex-shrink: 0;
}

.ptp-post-thumbnail a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.ptp-post-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.ptp-post-thumbnail a:hover img {
    transform: scale(1.03);
}

/* Post Title */
.ptp-post-title {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.ptp-post-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.ptp-post-title a:hover {
    color: #00a84c;
    text-decoration: underline;
}

/* No Posts Message */
.ptp-no-posts {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    font-size: 14px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .ptp-widget-title {
        font-size: 16px;
    }
    
    .ptp-post-thumbnail img {
        width: 60px;
        height: 60px;
    }
    
    .ptp-post-title {
        font-size: 13px;
    }
    
    .ptp-post-item {
        gap: 10px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .ptp-widget-title {
        font-size: 14px;
    }
    
    .ptp-post-thumbnail img {
        width: 55px;
        height: 55px;
    }
    
    .ptp-post-title {
        font-size: 12px;
    }
    
    .ptp-post-item {
        gap: 10px;
        padding: 8px 0;
    }
}

/* Sidebar compatibility */
.widget-area .ptp-trending-wrapper,
.sidebar .ptp-trending-wrapper {
    width: 100%;
    max-width: 100%;
}