.blog-tab-section{
    /*padding: 40px 0 60px;*/
    /*background: #f5f5f5;*/
    position: relative;
    padding-top:180px;
}

.blog-main-title{
        font-size: 20px;
    letter-spacing: 1px;
    color: #284d77;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 400;
    /*font-family: 'Oswald', sans-serif;*/
}

.blog-tabs{
    margin-bottom: 45px;
    border: none;
    gap: 10px;
}

.blog-tabs .nav-link{
    border: none;
    background: transparent;
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 14px;
    transition: 0.3s ease;
}

.blog-tabs .nav-link.active{
    color: #284d77;
    font-weight: 700;
}

.blog-card{
    background: #fff;
    border: 1px solid #ddd;
    height: 100%;
    transition: 0.3s ease;
}

.blog-card:hover{
    transform: translateY(-4px);
}

.blog-image{
    overflow: hidden;
}

.blog-image img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.blog-card:hover img{
    transform: scale(1.05);
}

.blog-content{
    padding: 22px 22px 28px;
}

.blog-meta{
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 18px;
    line-height: 1.7;
}

.blog-content h3{
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1c1c1c;
    font-weight: 400;
    /*font-family: Georgia, serif;*/
}

.blog-content p{
    font-size: 16px;
    line-height: 1.8;
    color: #5d6670;
    margin-bottom: 20px;
}

.blog-content a{
    color: #284d77;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}

.blog-content a:hover{
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 991px){

    .blog-main-title{
        font-size: 26px;
        line-height: 1.5;
    }

    .blog-image img{
        height: 220px;
    }

    .blog-content h3{
        font-size: 28px;
    }
}

@media (max-width: 767px){

    .blog-tab-section{
        padding: 30px 0 40px;
    }

    .blog-main-title{
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .blog-tabs{
        margin-bottom: 30px;
        gap: 0;
    }

    .blog-tabs .nav-link{
        font-size: 14px;
        padding: 6px 10px;
    }

    .blog-image img{
        height: 200px;
    }

    .blog-content{
        padding: 18px;
    }

    .blog-content h3{
        font-size: 24px;
    }

    .blog-content p{
        font-size: 14px;
        line-height: 1.7;
    }
}