.smart-blog-home-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
    margin-bottom: 60px;
}

.smart-blog-home-item {
    padding: 0 7.29vw;
    display: flex;
    align-items: center;
}

.smart-blog-home-item-date {
    margin-right: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.smart-blog-home-item-date-full {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 8px;
}

.smart-blog-home-item-date-full i {
    margin-right: 20px;
    font-size: 20px;
    color: #000000;
}

.smart-blog-home-item-date .sds_post_date-month {
    font-size: 18px;
    line-height: 1.2;
}

.smart-blog-home-item-date .sds_post_date-day {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.smart-blog-home-item-title {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.smart-blog-home-item-description {
    font-size: 18px;
    line-height: 1.222;
    max-height: 86px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.smart-blog-home-item-more {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.35s ease-in-out;
}

.smart-blog-home-item-more span {
    transition: transform 0.35s ease-in-out;
}

.smart-blog-home-item-more:hover span,
.smart-blog-home-item-more:hover::before {
    transform: translateX(-10px);
}

.smart-blog-home-item-more:hover {
    color: #1D3557;
}

.smart-blog-home-item-more:hover::before {
    background: #1D3557;
}


.smart-blog-home-item-more::before {
    content: '';
    min-width: 25px;
    height: 2px;
    background: #000000;
    margin-right: 14px;
    transition: transform 0.35s ease-in-out;
    transition-property: transform, background;
}

@media (max-width: 1199.98px) {
    .smart-blog-home-list {
        grid-template-columns: 1fr 1fr;
        grid-gap: 60px;
    }
    .smart-blog-home-item {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .smart-blog-home-list {
        grid-template-columns: 1fr;
    }
    .smart-blog-home-item-date-full {
        font-size: 12px;
    }

    .smart-blog-home-item-date-full i {
        font-size: 16px;
    }

    .smart-blog-home-item-title {
        font-size: 18px;
    }

    .smart-blog-home-item-description {
        max-height: 77px;
        font-size: 16px;
    }

    .smart-blog-home-item-more {
        font-size: 14px;
    }
}