.feature-img
{
    aspect-ratio: 2/1; /* 4:3 비율 유지 */
    overflow: hidden;
}

.feature-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지 비율 유지하며 꽉 채움 */
    display: block;
}

.feature-item .feature-img img
{
    transition: .5s;
}

.feature-item:hover .feature-img img
{
    transform: scale(1.15);
}

.pointer-none
{
    pointer-events: none;
}


.full-disabled-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}
