/* ThemePul Core CSS - Modern Social Sharing */

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .post-share-buttons {
        background: transparent;
        border: none;
    }
}

/* ThemePul Posts Widget Styles */
.themepul-posts-widget .themepul-posts-widget-content {
    margin: 0;
    padding: 0;
}

.themepul-posts-widget .themepul-post-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.themepul-posts-widget .themepul-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.themepul-posts-widget .post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

.themepul-posts-widget .post-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.themepul-posts-widget .post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.themepul-posts-widget .post-thumbnail:hover .post-image {
    transform: scale(1.05);
}

.themepul-posts-widget .post-content {
    flex: 1;
    min-width: 0;
}

.themepul-posts-widget .post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.themepul-posts-widget .post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.themepul-posts-widget .post-title a:hover {
    color: #3498db;
}

.themepul-posts-widget .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #7f8c8d;
}

.themepul-posts-widget .post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.themepul-posts-widget .post-meta i {
    font-size: 11px;
    opacity: 0.8;
}

.themepul-posts-widget .post-meta a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.themepul-posts-widget .post-meta a:hover {
    color: #3498db;
}

.themepul-posts-widget .post-content-text {
    font-size: 13px;
    line-height: 1.5;
    color: #34495e;
    margin-top: 8px;
}

/* Responsive Design for Posts Widget */
@media (max-width: 768px) {
    .themepul-posts-widget .themepul-post-item {
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .themepul-posts-widget .post-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .themepul-posts-widget .post-title {
        font-size: 14px;
    }
    
    .themepul-posts-widget .post-meta {
        font-size: 11px;
        gap: 8px;
    }
    
    .themepul-posts-widget .post-content-text {
        font-size: 12px;
    }
}

/* Dark Mode for Posts Widget */
@media (prefers-color-scheme: dark) {
    .themepul-posts-widget .themepul-post-item {
        border-bottom-color: #444;
    }
    
    .themepul-posts-widget .post-title a {
        color: #ecf0f1;
    }
    
    .themepul-posts-widget .post-title a:hover {
        color: #3498db;
    }
    
    .themepul-posts-widget .post-content-text {
        color: #bdc3c7;
    }
}
