.gallery {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-cell {
    height: 430px;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.gallery-cell.is-selected {
    background: rgba(255, 255, 255, 0.116);
}

/* cell number */
.gallery-cell:before {
    display: block;
    text-align: center;
    line-height: 200px;
    font-size: 80px;
    color: white;
}

#text-news {
    margin-top: auto;
    padding: 10px;
    background: rgb(25, 22, 22);
    background: linear-gradient(
        180deg,
        rgb(25 22 22 / 0%) 0%,
        rgba(25, 22, 22, 1) 84%
    );
}

#text-news .title {
    text-align: left;
    color: #fff;
    font-size: 16px;
    text-shadow: 2px 0 0 BLACK;
}

#text-news .data {
    color: #9e9e9e;
    font-family: "Gilroy";
    font-size: 12px;
    padding: 5px;
}

#text-news .text {
    font-family: "Gilroy";
    font-size: 14px;
    color: #fff;
    padding: 5px;
    text-shadow: 2px 0 0 BLACK;
}

#text-news .more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#text-news .more span:hover {
    margin-right: 5px;
}

#text-news .more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#text-news .more span:hover {
    margin-right: 5px;
}

.news-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffc437;
    font-size: 14px;
    font-family: "Gilroy";
    padding: 5px;
    line-height: 30px;
}

.news-more:after {
    content: "";
    background-image: url(../images/arrow.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 22px;
    height: 28px;
}

.news-card {
    transform: translateX(-100%);
    opacity: 0;
}
