﻿.last_News {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
}

    .last_News img {
        width: 90px;
        height: 80px;
        border-radius: 16px;
        object-fit: cover;
    }

    .last_News h4 {
        color: #ff8f00;
        text-align: right;
    }

    .last_News p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: anywhere;
    }

    .last_News a {
        border: 1px solid #e1e1e1;
        border-radius: 20px;
        padding: .5rem 1rem;
        width: 26%;
    }


@media (max-width: 1000px) {
    .last_News a {
        width: 100%;
    }
}
