.clc-965c79e1-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    outline: none;
    border-bottom-style: solid;
    transition: background-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    gap: 30px;
}

.clc-965c79e1-text-col {
    flex: 0 0 52%;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clc-965c79e1-title {
    margin: 0 0 10px 0;
    font-family: inherit;
    font-weight: 400;
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clc-965c79e1-desc {
    margin: 0;
    font-family: inherit;
    font-weight: 300;
}

.clc-965c79e1-img-col {
    flex: 0 0 42%;
    max-width: 42%;
}

.clc-965c79e1-img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background-color: #f7f7f7;
}

.clc-965c79e1-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover States */
.clc-965c79e1-card:hover .clc-965c79e1-img {
    transform: scale(1.03);
}

.clc-965c79e1-card:hover .clc-965c79e1-title {
    transform: translateX(4px);
    opacity: 0.85;
}

/* Responsive Behavior */
@media (max-width: 767px) {
    .clc-965c79e1-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .clc-965c79e1-text-col,
    .clc-965c79e1-img-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
