/* ================================
   BLOG SECTION
   ================================ */

.blogs-section {
    background: #ffffff;
}


/* ================================
   ARTICLE CARD
   ================================ */

.article-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    object-fit: cover;
}


/* ================================
   ARTICLE CONTENT
   ================================ */

.article-content {
    padding-top: 20px;
    flex: 1;
}

.article-category {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #6c757d;
    margin-bottom: 8px;
}

.article-title {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.article-description {
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}


/* ================================
   READ ARTICLE
   ================================ */

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #111827;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.article-link i {
    transition: transform 0.2s ease;
}

.article-link:hover {
    color: #2563eb;
}

.article-link:hover i {
    transform: translateX(4px);
}


/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991.98px) {

    .article-title {
        font-size: 24px;
    }

    .article-image {
        height: 220px;
    }

}


@media (max-width: 767.98px) {

    .article-image {
        height: 240px;
    }

    .article-title {
        font-size: 24px;
    }

}

/* ================================
   BLOG FILTER
   ================================ */

.blog-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filter-btn {
    border: 1px solid #dee2e6;
    background: #ffffff;
    color: #495057;

    padding: 9px 20px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.blog-filter-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}

.blog-filter-btn.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

.blog-filter-btn:active {
    transform: scale(0.97);
}