.blog-section {
    margin-top: 170px;
    margin-bottom: 50px;
}
.card-custom {
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.card-custom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-custom-body {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #fff;
    flex-grow: 1;
}

.card-custom-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.tags {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    margin-top: 10px;
}

.card-bottom {
    margin-top: auto;
}

.card-footer {
    padding: 0 !important;
    padding-top: 15px !important;
    padding-bottom: 10px !important;
    background-color: transparent !important;

    display: flex;
    justify-content: space-between;
}

.card-footer .read-more {
    text-decoration: none;
    font-weight: 600;
    color: #637381;
    font-size: 12px;
}

.card-footer .read-more:hover {
    color: #020202;
}

/* Custom Grid layout */
.card-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.author-images {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.author-images .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -16px;
    box-shadow: 0 0 0 1px #ccc;
    background: #fff;
}

.author-images .avatar:first-child {
    margin-left: 0;
}

.author-names {
    font-size: 12px;
    color: #6c757d;
}

@media screen and (max-width: 992px) {
    .card-columns {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* blog description */

.blog-description-section {
    margin-top: 170px;
    margin-bottom: 50px;
}

html {
    scroll-behavior: smooth;
}

.blog-content .blog-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content p {
    line-height: 1.8;
}

.blog-content ul {
    margin-left: 2rem;
}

.blog-content ul li{
    list-style-type: disc
}

.blog-content ol li:not(:first-child){
    margin-top: 10px
}

.blog-content .img-container{
    margin: 35px 0px;
    display: flex;
    width: 100%;
    justify-content: center;
    gap:10px;
    flex-wrap: wrap;
}

.blog-content h3{
    font-size: 24px;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h5{
    font-size: 20px;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.blog-content img {
    /* max-width: 100%; */
    height: auto;
}

.toc a {
    text-decoration: none;
    color: #515253;
}

.toc a:hover {
    color: #0a58ca;
}

.toc a.active {
    color: #0a58ca;
    font-weight: 500;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
}

.badge-custom {
    background-color: #e0e9f5;
    color: #386fc2 !important;

    font-size: 0.85rem;
    margin: 5px;
    font-weight: 500 !important;
    padding: 10px !important;
    border-radius: 20px !important;

}

table{
    width: 100%;
}

@media screen and (min-width: 992px) {
    .blog-content .blog-title {
        font-size: 32px;
    }
}
