.image-tab-content {
    clear: both;
}

.image-tab-tabs-list {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 15px;
}

.image-tab-tab {
    aspect-ratio : 1 / 1;
    max-width: 20%;
    display: flex;
    background: #BE936A;
    padding: 15px;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    align-items: end;
    color: white;
    cursor: pointer;
    font-weight: 700;
}

.image-tab-tab:hover,
.image-tab-tab:not(.collapsed) {
    background-color: #19A6B9;
    color: white;
}

@media only screen and (max-width: 600px) { 
    .image-tab-tab {
        font-size: 13px;
        font-weight: 600;
        padding: 8px
    }
}