.aria-gsl-container {
    display: flex;
    flex-direction: row;
    height: 500px;
    width: 100%;
    gap: 10px;
    overflow: hidden;
}

.aria-gsl-item {
    flex: 1;
    min-width: 0;
    will-change: flex;
    transform: translateZ(0);
    display: flex;
    flex-direction: row;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    background: #111;
    border-radius: 8px;
}

.aria-gsl-item.active {
    flex: 4;
    cursor: default;
}

.aria-gsl-content {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    align-items: center;
}

.aria-gsl-item.active .aria-gsl-content {
    width: 33%;
    opacity: 1;
}

.aria-gsl-content-inner {
    padding: 30px 30px 30px 60px;
    min-width: 250px;
}

.aria-gsl-shape-name {
    margin: 0 0 5px;
    font-size: 1.5rem;
}


.aria-gsl-shape-description {
    margin: 0 0 20px;
    line-height: 1.5;
}

.aria-gsl-icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.aria-gsl-icon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.aria-gsl-icon-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.aria-gsl-icon-list a:hover {
    opacity: 0.8;
}

.aria-gsl-list-icon {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.aria-gsl-list-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.aria-gsl-list-icon i {
    font-size: 1em;
}

.aria-gsl-image-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.aria-gsl-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: filter 0.6s ease;
}

.aria-gsl-item.active .aria-gsl-image-wrap img {
    filter: grayscale(0%);
}

.aria-gsl-link {
    display: inline-block;
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s;
}

.aria-gsl-link:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .aria-gsl-container {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }
    
    .aria-gsl-item {
        flex-direction: column;
    }
    
    .aria-gsl-item.active {
        flex: unset;
    }
    
    .aria-gsl-item.active .aria-gsl-content {
        width: 100%;
        height: auto;
        align-items: flex-start;
        overflow: visible;
    }
    
    .aria-gsl-content {
        width: 100%;
        height: 0;
    }

    .aria-gsl-item.active .aria-gsl-content-inner {
        padding: 30px 30px 30px 43px;
        min-width: 0;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .aria-gsl-item .aria-gsl-image-wrap {
    height: 55vw;
    max-height: 240px;
    overflow: hidden;
    }


    .aria-gsl-item .aria-gsl-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .aria-gsl-item.active .aria-gsl-image-wrap {
    height: 100vw;
    max-height: 430px;
    overflow: hidden;
    }

    .aria-gsl-item.active .aria-gsl-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
}