.blog-category-browser-category-btb {
    padding: 35px 14px 0 14px;
    max-width: 1300px;
    margin: 0 auto;
    background: #fff;
}

.category-bar-heading-category-btb {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
}

.category-bar-category-btb {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 24px;
    margin-bottom: 26px;
}

.category-bar-btn-category-btb {
    background: #ededed;
    color: #333;
    font-weight: 600;
    font-size: 1.10rem;
    border-radius: 10px;
    text-decoration: none;
    padding: 14px 33px;
    transition: background 0.20s, color 0.20s;
    display: inline-block;
    border: 0;
    outline: none;
}
.category-bar-btn-category-btb:hover {
    background: #bfd4ea;
    color: #232323;
}
.category-bar-btn-category-btb.active-category-btb {
    background: #1767af;
    color: #fff;
}

.blog-cards-grid-category-btb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 22px;
    margin-bottom: 38px;
}

.blog-card-category-btb {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(2, 53, 121, 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    min-height: 340px;
    height: fit-content;
}
.blog-card-category-btb:hover {
    box-shadow: 0 8px 22px 0 rgba(26,95,157,.11);
}

.blog-card-image-container-category-btb {
    width: 100%;
    height: 200px;
    background: #eff2f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-image-container-category-btb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 0;
}

.blog-card-label-category-btb {
    position: absolute;
    background: #fff;
    font-size: 13px;
    margin: 0 0 9px 0;
    color: #000;
    padding: 3px 8px;
    font-weight: 500;
    display: inline-block;
    border-radius: 4px;
    margin-left: 16px;
    margin-top: 14px;
}

.blog-card-content-category-btb {
    padding: 7px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-card-title-category-btb {
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #232d48;
}

.blog-card-meta-category-btb {
    font-size: 13px;
    color: #7c8da8;
    margin-bottom: 7px;
}

.blog-card-shortdesc-category-btb {
    font-size: 15px;
    color: #34495e;
    margin-top: auto;
}

.no-blogs-category-btb {
    grid-column: 1 / span 3;
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    margin: 64px 0;
}

.pagination-bar-category-btb {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
}

/* Responsive grid */
@media (max-width: 1100px) {
    .blog-cards-grid-category-btb {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
    }
}
@media (max-width: 700px) {
    .blog-cards-grid-category-btb {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .category-bar-category-btb {
        gap: 9px 9px;
        padding-right: 10px;
    }
}
