.barodev-posts-by-cat {
    margin: 20px 0;
}
.barodev-categories-row {
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}
.barodev-category-column {
    padding: 0 15px;
    margin-bottom: 30px;
}
.barodev-category-wrapper {
    height: 100%;
    display: flex;
    padding: 15px;
    flex-direction: column;
}

/* Category Header */
.barodev-category-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

/* Enhanced Category Image Styles */
.barodev-category-image {
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
}

.barodev-category-image-link {
    display: inline-block;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

.barodev-category-img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
    object-fit: cover;
}

.barodev-category-image-link:hover .barodev-category-img {
    filter: brightness(1.1);
}

/* Kích thước cố định cho ảnh danh mục theo layout */
.barodev-layout-card .barodev-category-img {
    height: 180px;
    width: 100%;
}

.barodev-layout-boxed .barodev-category-img {
    height: 60px;
    width: 100%;
}

.barodev-layout-clean .barodev-category-img {
    height: 120px;
    width: 100%;
}

.barodev-category-title {
    margin: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}
.barodev-category-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.barodev-category-title a:hover {
    color: var(--primary-color);
}
.barodev-category-count {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}
.barodev-category-desc {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    text-align: center;
}

/* Posts List */
.barodev-posts-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.barodev-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.barodev-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.barodev-post-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
}
.barodev-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.barodev-post-thumbnail:hover img {
    transform: scale(1.1);
}
.barodev-post-content {
    flex: 1;
    min-width: 0;
}
.barodev-post-title {
    display:flex; 
    align-items:center;
    margin: 0 0 5px 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}
.barodev-post-title i{
    color: #333;
    transition: color 0.3s ease;
}

.barodev-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.barodev-post-title:hover a,
.barodev-post-title:hover i	{
    color: var(--primary-color);
}
.barodev-post-date {
    margin: 5px 0;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}
.barodev-post-excerpt {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View All Link */
.barodev-view-all {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1;
    text-align: center;
}
.barodev-view-all-link {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}
.barodev-view-all-link:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Layout Styles */
.barodev-layout-clean .barodev-category-wrapper {
    padding: 15px 0;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: none;
    background: transparent;
}
.barodev-layout-clean .barodev-category-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
}
.barodev-layout-clean .barodev-category-image-link {
    box-shadow: none;
}

.barodev-layout-card .barodev-category-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.barodev-layout-card .barodev-category-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.barodev-layout-card .barodev-category-title {
    font-size: 22px;
}
.barodev-layout-card .barodev-category-image {
    margin-bottom: 20px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .barodev-categories-row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .barodev-category-column {
        padding: 0 10px;
    }
    .barodev-category-title {
        font-size: 18px;
    }
    .barodev-post-item {
        flex-direction: column;
        gap: 10px;
    }
    .barodev-post-thumbnail {
        width: 100%;
        height: auto;
        max-height: 150px;
    }
    .barodev-category-img {
        max-height: 60px;
        object-fit: cover;
        width: 100%;
    }
    .barodev-layout-boxed .barodev-category-wrapper,
    .barodev-layout-card .barodev-category-wrapper {
        padding: 15px;
    }
}

/* Column responsive classes */
.column {
    width: 100%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

@media (min-width: 550px) {
    .barodev-posts-by-cat .medium-6 { flex-basis: 50% !important; max-width: 50% !important; }
    .barodev-posts-by-cat .medium-4 { flex-basis: 33.333333% !important; max-width: 33.333333% !important; }
}

@media (min-width: 850px) {
    .barodev-posts-by-cat .large-5 { flex-basis: 18% !important; max-width: 18% !important; }
    .barodev-posts-by-cat .large-4 { flex-basis: 33.333333% !important; max-width: 33.333333% !important; }
    .barodev-posts-by-cat .large-3 { flex-basis: 25% !important; max-width: 25% !important; }
    .barodev-posts-by-cat .large-2 { flex-basis: 20% !important; max-width: 20% !important; }
}


.barodev-posts-by-cat .large-5 { flex-basis: 18% !important; max-width: 18% !important; }
.barodev-posts-by-cat .large-4 { flex-basis: 33.333333% !important; max-width: 33.333333% !important; }
.barodev-posts-by-cat .large-3 { flex-basis: 25% !important; max-width: 25% !important; }
.barodev-posts-by-cat .large-2 { flex-basis: 20% !important; max-width: 20% !important; }

.row::after {
    content: "";
    display: table;
    clear: both;
}