.space-photos-block {
    margin-top: 10px;
    max-width: 220px;
}

.space-photos-block > p {
    margin-bottom: 8px;
}

.space-photos-gallery {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.space-photo-main {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.space-photo-link {
    display: block;
}

.space-photo-main img {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.space-photo-link:hover img {
    opacity: 0.9;
}

.space-photo-link:focus-visible {
    outline: 2px solid #1f2a44;
    outline-offset: 2px;
}

.space-photo-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.space-photo-thumb {
    position: relative;
    flex: 0 0 68px;
    width: 68px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;
}

.space-photo-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.space-photo-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 42, 68, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.space-photo-hidden {
    display: none;
}

@media only screen and (max-width: 690px) {
    .space-photos-block {
        max-width: 100%;
    }

    .space-photo-main img {
        height: 125px;
    }

    .space-photo-thumb {
        flex-basis: 78px;
        width: 78px;
        height: 58px;
    }
}
