.ci-hover-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
@media(max-width:1025px){
    .ci-hover-container {
        min-height: 300px;
        margin-bottom: 0px;
    }
}
@media(max-width:767px){
    .ci-hover-container {
        min-height: unset;
        margin-bottom: 0px;
    }
}

.ci-image {
    flex-basis: 40%;
    max-width: 300px;
    position: relative;
}
@media(max-width:767px){
    .ci-image {
        display: none;
    }
}


.ci-image img{
    max-height: 300px;
    min-height: 200px;
    object-fit: contain;
}

.ci-hover-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;

}

.ci-hover-image.active {
    opacity: 1;
}

.ci-categories {
    flex-basis: 55%;
}

.ci-categories ul {
    list-style-type: none;
    padding-left: 0;
}

.ci-categories li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.ci-categories li a {
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}

.ci-marker {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    background-color: #000;
    width: 2px;
    height: 2px;
    transition: width 0.2s ease-in-out;
    margin-right: 10px;
}

.ci-categories li:hover .ci-marker {
    width: 10px;
}

/* H3 Link Styling */
.ci-list-heading a {
    text-decoration: none;
    color: #000;
}

/* Style when image is positioned on the right */
.ci-image-right .ci-image {
    order: 2;
}

.ci-image-right .ci-categories {
    order: 1;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .ci-hover-container {
        flex-direction: column;
    }

    .ci-image, .ci-categories {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
}