.ps-gallery-page
{
    padding-top: 20px;
    padding-bottom: 40px;
}

.ps-gallery-switch
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ps-gallery-switch__link
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #d8cab7;
    border-radius: 20px;
    background: #ffffff;
    color: #002873;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    transition: all 0.2s ease;
}

.ps-gallery-switch__link.is-active
{
    background: #002873;
    border-color: #002873;
    color: #ffffff;
}

.ps-gallery-detail
{
    margin-top: 10px;
}

.ps-gallery-viewer
{
    margin-top: 24px;
    margin-bottom: 24px;
}

.ps-gallery-viewer__link
{
    display: block;
    text-decoration: none;
}

.ps-gallery-viewer__image
{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.ps-gallery-viewer__caption
{
    margin-top: 12px;
    color: #002873;
    font-size: 16px;
    line-height: 1.4;
}

.ps-gallery-thumbs
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.ps-gallery-thumb
{
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.ps-gallery-thumb.is-active
{
    border-color: #002873;
}

.ps-gallery-thumb__image
{
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.ps-gallery-empty
{
    padding: 30px 0;
    color: #002873;
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 767px)
{
    .ps-gallery-thumbs
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ps-gallery-thumb__image
    {
        height: 130px;
    }
}