/* Style the catalog of photos records */
.SingleCatalogsPhotos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    width: 100%;

    padding-left: 17px;
    padding-right: 17px;
}

    .SingleCatalogsPhotos__Header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        margin-bottom: 47px;
    }

    @media screen and (max-width: 550px){
        .SingleCatalogsPhotos__Header {
            justify-content: center;
        }
    }

        .SingleCatalogsPhotosHeader__Titul {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;

            color: rgb(217, 221, 225);

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .SingleCatalogsPhotosHeader__Titul {
                justify-content: center;
            }
        }

            .SingleCatalogsPhotosHeader__Titul > span {
                color: rgb(247, 197, 47);

                margin-left: 4px;
                margin-right: 4px;
            }

        .SingleCatalogsPhotosHeader__Title {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .SingleCatalogsPhotosHeader__Title {
                justify-content: center;
            }
        }

            .SingleCatalogsPhotosHeader__Title > h2 {
                text-align: left;
                max-width: 600px;
            }

            @media screen and (max-width: 550px){
                .SingleCatalogsPhotosHeader__Title > h2 {
                    text-align: center;
                }
            }

    .SingleCatalogsPhotos__Block {
        display: grid;
        align-items: flex-start;
        justify-content: flex-start;

        grid-template-columns: repeat( auto-fit, minmax( 300px, 1fr ) );

        width: 100%;

        gap: 17px;
    }

        .SingleCatalogsPhotosBlock__Item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            position: relative;

            width: 100%;

            transition: 0.4s;
            box-shadow: 0px 0px 37px rgba(255, 237, 177, 0.1);
        }

            .SingleCatalogsPhotosBlock__Item:hover {
                transition: 0.2s;
                box-shadow: 0px 0px 37px rgba(255, 237, 177, 0.3);
            }

            .SingleCatalogsPhotosBlock__Item > h5 {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;

                text-align: center;

                background: rgba(60, 64, 68, 0.4);
                border-radius: 3px;

                position: absolute;
                z-index: 1;

                width: 100%;
                height: 100%;

                padding: 17px;

                transition: 0.4s;
                box-sizing: border-box;
            }

                .SingleCatalogsPhotosBlock__Item:hover > h5 {
                    transition: 0.2s;
                    background: rgba(60, 64, 68, 0.3);
                }

            .SingleCatalogsPhotosBlock__Item > img {
                border-radius: 3px;

                width: 100%;
                height: auto;
                max-width: 512px;
            }