#lastNews .lastNewsTitle h1 {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    text-align: center;
}

#lastNews .news-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#lastNews .news-list .news-card {
    margin: 20px auto 40px;
    width: 360px;
    border-radius: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    background-color: white;

    display: grid;

    font-size: 12px;

    -webkit-box-shadow: -13px 18px 17px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -13px 18px 17px -11px rgba(0, 0, 0, 0.75);
    box-shadow: -13px 9px 17px -11px rgba(0, 0, 0, 0.75);
}

.last-news .news-list .news-card img {
    width: 360px;
    height: 210px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    object-fit: cover;
}

#lastNews .news-list .news-card .news-info {
    text-align: center;
    padding: 10px 15px 15px;
}

#lastNews .news-list .news-card .news-info .author {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#lastNews .news-list .news-card .news-info a {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
    border: none;

    padding: 5px 10px;

    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: white;

    height: 35px;
    width: 90px;
    background-color: var(--pink-color);
    border-radius: 16px;

    -webkit-box-shadow: -13px 18px 17px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -13px 18px 17px -11px rgba(0, 0, 0, 0.75);
    box-shadow: -13px 9px 17px -11px rgba(0, 0, 0, 0.75);
}

#lastNews .news-list .news-card .news-info a:hover {
    background-color: rgb(235, 34, 101);
}

#lastNews .newsButton a {
    font-size: 20px;
    border: none;

    width: 200px;
    height: 50px;
    margin-bottom: 40px;
    padding: 10px 10px 10px 50px;
    border-radius: 24px;
    text-transform: uppercase;

    background: var(--pink-color);
    color: white;
    font-weight: bold;

    transition: all 200ms;

    -webkit-box-shadow: -13px 18px 17px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -13px 18px 17px -11px rgba(0, 0, 0, 0.75);
    box-shadow: -13px 9px 17px -11px rgba(0, 0, 0, 0.75);
}

#lastNews .newsButton a:hover {
    background: rgb(235, 34, 101);
}

#lastNews .news-list .news-page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

#lastNews .news-list .news-page a:hover {
    border: none;
    font-size: 1rem;
}

#lastNews .news-list .news-page ul {
    display: flex;
    flex-direction: row;
}

#lastNews .news-list .news-page ul li {
    padding: 2px 4px;
    border: 0.5px solid var(--pink-color);
}

#lastNews .news-list .news-page ul li:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#lastNews .news-list .news-page ul li:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

#lastNews .news-list .news-page ul li a {
    color: var(--pink-color);
}

#lastNews .news-list .news-page ul li a:hover {
    color: rgb(235, 34, 101);
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 858px) {
    #lastNews .news-list .news-page ul {
        position: initial;
        width: initial;
        height: initial;
        background: none;
        top: initial;
        left: initial;
    }
}

@media (min-width: 1000px) {
    .lastNewsTitle {
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lastNewsTitle h1 {
        text-align: initial;
    }
}

@media (min-width: 1100px) {
    #lastNews .news-list .news-card {
        width: 1000px;
        grid-template-columns: 1fr 2fr;
    }

    .last-news .news-list .news-card img {
        width: 300px;
        height: 200px;
        border: 16px;
        padding: 20px 0 0 10px;
    }

    #lastNews .news-list .news-card .news-info {
        text-align: start;
    }
}
