.body { 
    padding: 80px 0; 
    background-color: #fcfcfc; 
}

.article-grid { 
    display: flex;
    gap: 30px;
    align-items: start;
}

.item-blog article .image {
    width: 100%;
}

.blog-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 45%;
}

.item-blog {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
}

.item-blog article:hover .blog-inner-info {
    animation: slideDetails 0.1s forwards !important;
}

@keyframes slideDetails {
  100% {
    margin-top: -60px;
  }
}

.item-blog article {
    display: flex;
    flex-direction: row; 
    background: #ffffff;
    border: 1px solid #eef2f6;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.item-blog article:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.item-blog .image, 
.item-blog .info {
    width: 50%;
    flex: 1;
}

.item-blog .image { 
    cursor: pointer; 
    overflow: hidden;
}

.item-blog .image .img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.5s ease;
}

.item-blog article:hover .image .img {
    transform: scale(1.03);
}

.item-blog .info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.entry-categories { 
    display: flex; 
    align-items: center; 
    margin-bottom: 12px; 
}

.badge-cat {
    background-color: #e8f2ff;
    color: #0066cc;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.blog-date { 
    margin: 0 0 0 12px; 
    color: #8a94a6; 
    font-size: 12px; 
}

.blog-entry-title { 
    font-size: 19px; 
    font-weight: 700; 
    margin: 0 0 12px 0; 
    line-height: 1.4; 
    color: #1a202c; 
}

.blog-summary { 
    font-size: 14px; 
    color: #4a5568; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.blog-summary h2, .blog-summary h3 { font-size: 16px; margin: 15px 0 8px; color: #1a202c; }
.blog-summary p {
    margin-bottom: 10px;
    font-size: 16px !important;
}
.blog-summary ul, .blog-summary ol { padding-left: 20px; margin-bottom: 15px; }

.view-more { 
    text-decoration: none; 
    color: #004aad; 
    font-weight: 700; 
    font-size: 13px; 
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}
.view-more i { margin-left: 5px; font-size: 11px; }
.clearfix { clear: both; }

.round-paginate { 
    text-align: center; 
    margin-top: 50px; 
    width: 100%;
}

@media (max-width: 1366px) {
    .blog-entry-title {
        font-size: 16px;
    }

    .blog-summary p {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .blog-entry-title {
        margin: 20px 0 0 0 !important;
    }

    .blog-summary p {
        font-size: 12px;
    }

    .view-more {
        height: 60px;
    }

}

@media (max-width: 992px) {
    .articles {
        padding: 50px 0;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .article-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .blog-column {
        width: 100%;
    }

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

    .card-content {
        padding: 18px;
    }

    .card-title {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .item-blog.small {
        height: 100% !important;
    }
    .item-blog.small article .image {
        height: 325px !important;
    }
    .item-blog.small {
        height: 100% !important;
    }
    .item-blog.small article .info {
        height: 325px !important;
    }
    .blog-summary {
        height: 100px !important;
    }

    .blog-entry-title {
        height: 90px !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}