/* Posts List By Category Styles */
.barodev-posts-list-by-cat {
    margin: 20px 0;
    font-family: inherit;
}

/* Category Section */

.barodev-category-section:last-child {
    margin-bottom: 0;
}

.barodev-category-header {
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.barodev-category-title {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
}

.barodev-category-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.barodev-category-title a:hover {
    color: #007cba;
}

.barodev-category-count {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
}

/* Posts Container */
.barodev-posts-container {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

/* Post Item - Base Styles */
.barodev-post-item {
    display: flex;
    align-items: flex-start;
    margin: 0 !important;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.barodev-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.barodev-post-item:hover {
    background-color: #f9f9f9;
    padding-left: 5px;
}

/* Post Number (for numbered style) */
.barodev-post-number {
    min-width: 30px;
    font-weight: bold;
    color: #007cba;
    margin-right: 15px;
    font-size: 1.1em;
}

/* Post Thumbnail */
.barodev-post-thumbnail {
    flex-shrink: 0;
    margin-right: 15px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}

.barodev-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.barodev-post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Post Content */
.barodev-post-content {
    flex: 1;
    min-width: 0;
}

.barodev-post-title {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.4;
}

.barodev-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.barodev-post-title a:hover {
    color: #007cba;
}

/* Bullet Icon */
.barodev-bullet-icon {
    margin-right: 10px;
    font-size: 10px;
    color: #007cba;
}

/* Post Date */
.barodev-post-date {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 5px;
}

.barodev-date-icon {
    margin-right: 5px;
}

/* Post Excerpt */
.barodev-post-excerpt {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    margin-top: 5px;
}

/* List Style Variations */

/* Simple Style */
.barodev-posts-list-simple .barodev-post-item {
    padding: 0;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

/* Numbered Style */
.barodev-posts-list-numbered .barodev-post-item {
    padding: 8px 0;
}

/* Bullet Style */
.barodev-posts-list-bullet .barodev-post-item {
    padding: 8px 0;
}

/* Card Style */
.barodev-posts-list-card .barodev-post-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.barodev-posts-list-card .barodev-post-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    padding-left: 15px;
}

.barodev-posts-list-card .barodev-post-thumbnail {
    width: 80px;
    height: 80px;
}

/* Ungrouped Style */
.barodev-ungrouped .barodev-post-item {
    border-bottom: 1px solid #eee;
}

/* No Posts Message */
.barodev-no-posts,
.barodev-no-category {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .barodev-post-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .barodev-post-thumbnail {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        height: 120px;
    }

    .barodev-post-number {
        margin-right: 10px;
        margin-bottom: 5px;
    }

    .barodev-category-title {
        font-size: 1.3em;
    }

    .barodev-posts-list-card .barodev-post-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .barodev-post-title {
        font-size: 1em;
    }

    .barodev-post-excerpt {
        font-size: 0.85em;
    }

    .barodev-category-title {
        font-size: 1.2em;
    }
}

/* Animation */
.barodev-post-item {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.barodev-posts-list-by-cat.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
.barodev-post-title a:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

.barodev-post-thumbnail a:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .barodev-post-item {
        break-inside: avoid;
        border-bottom: 1px solid #ccc;
    }

    .barodev-post-thumbnail {
        display: none;
    }

    .barodev-category-header {
        border-bottom: 1px solid #ccc;
    }
}