/* === Custom Block Styling === */
.industriesBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

.industries__heading{
    padding-bottom: 16px;
    border-bottom: solid 1px var(--FC-secondary-color);
    margin-bottom: 0px;
}

.industries__topWrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 16px;
    cursor: pointer;
}

.industries__linkWrapper{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 32px;
}

.industry__title, .industry__plusMinus{
    font-weight: 600;
    font-size: var(--FC-font-size-20);
}

.industry__plusMinus{
    color: var(--FC-secondary-color);
    cursor: pointer;
}

.industries__contentWrapper{
    border-bottom: solid 1px var(--FC-secondary-color);
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.industries__contentWrapper.active{
    max-height: 300px;
    transition: max-height 0.3s ease-in;
}

.industry__industryLink{
    font-size: var(--FC-font-size-16);
    padding: 8px 32px;
    border: solid 1px var(--FC-secondary-color);
    border-radius: 20px;
    color: var(--FC-primary-color) !important;
    transition: var(--FC-default-transition);
}

.industry__industryLink:hover{
    background-color: var(--FC-secondary-color);
    color: var(--FC-white) !important;
    transition: var(--FC-default-transition);
}

.industry__linkArrow{
    transition: var(--FC-default-transition);
}

.industry__industryLink:hover .industry__linkArrow{
    stroke: var(--FC-white);
    transition: var(--FC-default-transition);
}

.industries__gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.industries__galleryLeftCol, .industries__galleryRightCol{
    display: grid;
    gap: 30px;
}

.industries__galleryImageWrapper{
    max-width: 300px;
    width: 100%;
    aspect-ratio: 1/1;
}

.industries__galleryImage{
    border-radius: 30px;
    max-width: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
}

.industries__galleryLeftCol{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.industries__galleryLeftCol .industries__galleryImageWrapper{
    display: flex;
    justify-content: flex-end;
}

.industries__galleryRightCol .industries__galleryImageWrapper{
    display: flex;
    justify-content: flex-start;
}

.industries__galleryLeftCol .industries__galleryImageWrapper:last-of-type .industries__galleryImage, .industries__galleryRightCol .industries__galleryImageWrapper:first-of-type .industries__galleryImage{
    max-width: 250px;
}

.industries__galleryLeftCol .industries__galleryImageWrapper:last-of-type{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.industries__galleryRightCol .industries__galleryImageWrapper:first-of-type{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

@media screen and (max-width: 1199.98px){
    .industries__galleryImageWrapper, .industries__galleryImage{
        max-width: 225px;
    }
    .industries__galleryLeftCol .industries__galleryImageWrapper:last-of-type .industries__galleryImage, .industries__galleryRightCol .industries__galleryImageWrapper:first-of-type .industries__galleryImage{
        max-width: 175px;
    }
    .industries__innerColumn{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .industries__gallery, .industries__galleryLeftCol, .industries__galleryRightCol{
        gap: 25px;
    }
}

@media screen and (max-width: 991.98px){
    .industries__gallery, .industries__galleryLeftCol, .industries__galleryRightCol{
        gap: 20px;
    }
    .industries__galleryImageWrapper, .industries__galleryImage{
        max-width: 150px;
    }
    .industries__galleryLeftCol .industries__galleryImageWrapper:last-of-type .industries__galleryImage, .industries__galleryRightCol .industries__galleryImageWrapper:first-of-type .industries__galleryImage{
        max-width: 125px;
    }
}

@media screen and (max-width: 767px){
    .industries__galleryImageWrapper, .industries__galleryImage{
        max-width: 100%;
    }
    .industries__galleryLeftCol .industries__galleryImageWrapper:last-of-type .industries__galleryImage, .industries__galleryRightCol .industries__galleryImageWrapper:first-of-type .industries__galleryImage{
        max-width: 75%;
    }
    .industries__innerColumn{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .industries__gallery, .industries__galleryLeftCol, .industries__galleryRightCol{
        gap: 25px;
    }
    .industries__row{
        flex-direction: column-reverse;
    }
    .industries__galleryColumn{
        padding-bottom: 64px;
    }
}

@media screen and (max-width: 575px){
    /* .industries__galleryImageWrapper, .industries__galleryImage{
        max-width: 100%;
    }
    .industries__galleryLeftCol .industries__galleryImageWrapper:last-of-type .industries__galleryImage, .industries__galleryRightCol .industries__galleryImageWrapper:first-of-type .industries__galleryImage{
        max-width: 75%;
    } */
    .industries__gallery, .industries__galleryLeftCol, .industries__galleryRightCol{
        gap: 15px;
    }
}