#last_article .la-wrapper {
    width: 100%;
    height: 100%;
}

#last_article .la-card {
    position: relative;
    display: flex;
    align-items: flex-end;

    width: 100%;
    height: 350px;
    padding: 1rem;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 12px;
    text-decoration: none;
    color: #fff;

    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

#last_article .la-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15)
    );
    z-index: 1;
    transition: opacity .3s ease;
}

#last_article .la-content {
    position: relative;
    z-index: 2;
}

#last_article .la-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

#last_article .la-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,.25);
}

#last_article .la-card:hover .la-overlay {
    opacity: .85;
}

@media (min-width: 768px) {
    #last_article .la-card {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    #last_article .la-title {
        font-size: 1.4rem;
    }
}
