.city-photos {
    margin-top: 24px;
    margin-bottom: 32px;
}

.city-photos__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.city-photos__item {
    background-color: #F2F5F9;
    overflow: hidden;
    position: relative;
}

.city-photos__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.city-photos__item:nth-last-child(3):nth-child(2),
.city-photos__item:nth-last-child(2):nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.city-photos__item:last-child:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 2 / 2;
}

.city-photos__item:last-child:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.city-photos__item:last-child:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.city-photos__link {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.city-photos__item svg {
    color: #B5BDC4;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.city-photos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .25s ease-in-out;
    aspect-ratio: 1 / 1;
}

.city-photos__item:hover img {
    transform: scale(1.1);
}

.city-photos__all-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001A34CC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #FFFFFF;
}

.city-photos__all-photo span:first-child {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.city-photos__all-photo span:last-child {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.city-photos__hidden-list {
    display: none;
}