.product-container-77a9c173 {
    display: flex;
    flex-direction: row;
    height: 500px;
    width: 100%;
    gap: 10px;
    overflow: hidden;
}

.product-item-77a9c173 {
    flex: 1;
    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;
}

.product-item-77a9c173.active {
    flex: 4;
    cursor: default;
}

.product-content-77a9c173 {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    align-items: center;
}

.product-item-77a9c173.active .product-content-77a9c173 {
    width: 50%;
    opacity: 1;
}

.product-content-inner-77a9c173 {
    padding: 30px;
    min-width: 250px;
}

.product-name-77a9c173 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.product-job-77a9c173 {
    margin: 0 0 15px;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.product-bio-77a9c173 {
    margin: 0 0 20px;
    line-height: 1.5;
}

.product-icon-list-77a9c173 {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.product-icon-list-77a9c173 li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-icon-list-77a9c173 a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.product-icon-list-77a9c173 a:hover {
    opacity: 0.8;
}

.list-icon-77a9c173 {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.list-icon-77a9c173 svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.list-icon-77a9c173 i {
    font-size: 1em;
}

.product-image-wrap-77a9c173 {
    flex: 1;
    height: 100%;
    position: relative;
}

.product-image-wrap-77a9c173 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.product-item-77a9c173.active .product-image-wrap-77a9c173 img {
    filter: grayscale(0%);
}

.product-social-77a9c173 {
    display: inline-block;
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s;
}

.product-social-77a9c173:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .product-container-77a9c173 {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }
    
    .product-item-77a9c173 {
        flex-direction: column;
    }
    
    .product-item-77a9c173.active {
        flex: unset;
    }
    
    .product-item-77a9c173.active .product-content-77a9c173 {
        width: 100%;
        height: auto;
        align-items: flex-start;
        overflow: visible;
    }
    
    .product-content-77a9c173 {
        width: 100%;
        height: 0;
    }

    .product-item-77a9c173.active .product-content-inner-77a9c173 {
        min-width: 0;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .product-item-77a9c173.active .product-image-wrap-77a9c173 {
        flex: 0 0 auto;
        height: auto;
        position: relative;
    }

    .product-item-77a9c173.active .product-image-wrap-77a9c173 img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}