.photo-set-container {
    min-height: 1vw;
}
.photopack__title {
    text-align: center;
    font-size: 37px;
    font-family: 'Faberge';
    font-weight: normal;
    text-align: center;

    padding-top: 30px;
}
.photopack__description {
    text-align: justify;

    margin-top: 27px;
    white-space: pre-wrap;
}
.photopack__categories-list {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;

    color: var(--dark-color-1);
}
.photopack__categories-list-item {
    padding: 7px 22px 11px 23px;
    background-color: var(--photo-wapl);
    border-radius: 22px;
    font-size: 20px;
}
.photopack__gallery {

    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;

    column-count: 5;
    /*row-gap: 4px;*/
    /*column-gap: 4px;*/
    gap: 4px;


}
.photopack__gallery-item {
    /*break-inside: avoid;*/
    display: inline-block;
    width: 100%;
    height: auto;


}
.photopack__gallery-item-img {
    vertical-align: middle;

    width: 100%;
    height: auto;
    display: block;

    background-color: var(--primary-color-2);
}

@media (max-width: 1196px) {
    .container {
        padding-block: 0;
    }
    .photopack__title {
        font-size: 27px;
        padding-top: 28px;
    }
    .photopack__description {
        font-size: 18px;
        margin-top: 25px;
    }
    .photopack__categories-list {
        justify-content: center;
        gap: 5px;
        margin-top: 20px;
    }
    .photopack__categories-list-item {
        padding: 6px 14px 8px 14px;
        font-size: 16px;
    }
    .photopack__gallery {
        margin-top: 20px;
        column-count: 4;
    }
}
@media (min-width: 600px) and (max-width: 900px) {
    .photopack__gallery {
            column-count: 3;
    }

}
@media (min-width: 0px) and (max-width: 600px) {
    .photopack__gallery {
            column-count: 2;
    }
}