.blog-details-section-details-btb {
    background: #fff;
    padding-top: 32px;
}
.container-details-btb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}
.row-details-btb {
    display: flex;
    justify-content: center;
}
.main-content-details-btb {
    width: 100%;
    margin: 0 auto;
}
.title-date-cat-details-btb {
    margin-bottom: 22px;
}
.category-badge-details-btb {
    font-size: 0.95rem;
    background: #000;
    color: #fff;
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}
.blog-title-details-btb {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 7px;
    margin-top: 0;
    color: #232323;
}
.meta-section-details-btb {
    display: flex;
    gap: 16px;
    font-size: 0.98rem;
    color: #767676;
    margin-bottom: 20px;
}
.date-details-btb, .catname-details-btb {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-image-details-btb {
    width: 100%;
    margin-bottom: 32px;
}
.blog-image-details-btb img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
    background: #f2f2f2;
    display: block;
}

.blog-intro-details-btb {
    font-size: 1.16rem;
    color: #414a58;
    line-height: 1.7;
    margin-bottom: 42px;
}

.more-blogs-section-details-btb {
    background: #fff;
    padding: 18px 0 36px 0;
}
.more-blogs-header-details-btb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
    gap: 20px;
}
.more-blogs-title-details-btb {
    font-size: 1.38rem;
    font-weight: 700;
    color: #223d57;
    margin-bottom: 0;
    margin-top: 0;
}
.more-blogs-viewall-details-btb {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    background: transparent;
    transition: background 0.16s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more-blogs-viewall-details-btb span{
    margin-top: -4px;
}

.more-blogs-row-details-btb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.more-blog-card-details-btb {
    position: relative;
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(2, 53, 121, 0.08);
    overflow: hidden;
    width: 100%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s;
}
.more-blog-card-details-btb:hover {
    box-shadow: 0 8px 24px rgba(23, 78, 166, 0.13);
}
.blog-card-link-details-btb {
    text-decoration: none;
    color: inherit;
    display: block;
}
.card-image-details-btb {
    width: 100%;
    height: 200px;
    background: #eaeff6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image-details-btb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f7f7fb;
    border-bottom: 1px solid #eaeaee;
}
.card-content-details-btb {
    padding: 11px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card-label-details-btb {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.89rem;
    color: #000;
    background: #fff;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2px;
    padding: 3px 8px 2px 8px;
}
.card-title-details-btb {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.41;
    text-align: center;
}
.card-date-details-btb {
    font-size: 0.95rem;
    color: #7c8da8;
    margin-top: 3px;
}
@media (max-width: 992px) {
    .main-content-details-btb {
        max-width: 100%;
    }
    .more-blogs-row-details-btb {
        flex-wrap: wrap;
        gap: 18px;
    }
    .more-blog-card-details-btb {
        width: 46%;
        min-width: 180px;
    }
}
@media (max-width: 700px) {
    .container-details-btb {
        padding: 0 6px;
    }
    .blog-details-section-details-btb {
        padding-top: 18px;
    }
    .more-blogs-section-details-btb {
        padding-bottom: 20px;
    }
    .main-content-details-btb {
        max-width: 100%;
        padding: 0 2px;
    }
    .more-blogs-row-details-btb {
        gap: 11px;
        flex-direction: column;
        align-items: stretch;
    }
    .more-blog-card-details-btb {
        width: 100%;
        min-width: unset;
    }
    .card-title-details-btb {
        max-width: 100%;
        white-space: normal;
    }
}
