/*  */

.hcgr-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    max-width: 810px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.hcgr-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px;
    padding-right: 25px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    line-height: 19px;
    color: black;
    border-radius: 27px;
    border: 1px solid #CECECE;
    background: transparent;
}

.hcgr-chip:hover {
    transform: translateY(-1px);
    border: 1px solid #FF9100;
}

.hcgr-chip.active {
    box-shadow: 0 0 0 2px #00000012;
    border: 1px solid #FF6200;
}

.hcgr-chip-thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.hcgr-chip-thumb--placeholder {
    background: #d9d9de;
}




.hcgr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width:1200px) {
    .hcgr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .hcgr-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


.hcgr-card {

    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #f6f6f8;

}


.hcgr-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}


.hcgr-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: black;
    background-color: white;
    padding: 8px 20px;
    border-radius: 16px;
    box-shadow: 0px 3px 10px #00000014;
}


.hcgr-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;

    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: white;

    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    backdrop-filter: blur(3px);

    padding: 15px;
        background: rgba(0, 0, 0, 0.4);
}


.hcgr-actions {
    text-align: center;
    margin-top: 25px;

        display: flex;
    justify-content: center;
}

/*  */
.hcgr-gallery {
    --gap: 24px;
    --radius: 16px;
    --chip-bor: #e9e9ec;
    --tag-bg: rgba(0, 0, 0, .6);
    --tag-txt: #fff;
}




.hcgr-more {

    min-height: 60px;
    display: flex;
    align-items: center;
    min-width: 60px;
    border-radius: 31px;
    gap: 15px;
    justify-content: center;
    color: black !important;
    background-color: white;
    padding: 18px 40px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    cursor: pointer;

}
.hcgr-more svg{
    width: 10px;
    height: auto;
    flex: 0 0 10px;
    fill: black;
    transform: rotate(225deg);
}


.hcgr-hidden {
    display: none !important;
}