﻿

.pro_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem 1.75rem;
}

.pro_item {
    position: relative;
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(30, 60, 25, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .pro_item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--gold);
        transition: height 0.4s ease;
        z-index: 1;
    }

    .pro_item:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(30, 60, 25, 0.18);
    }

        .pro_item:hover::before {
            height: 100%;
        }

    .pro_item a {
        display: block;
        text-decoration: none;
        color: inherit;
    }

.pro_itm_img {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e8f0e4;
}

    .pro_itm_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease, filter 0.4s ease;
        filter: saturate(0.9);
    }

.pro_item:hover .pro_itm_img img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

.pro_itm_ttl {
    font-weight: 600;
    font-size: 20px;
    color: var(--green-dark);
    margin: 0.9rem 1.25rem 0.3rem;
    line-height: 1.35;
}

.pro_itm_more {
    margin: 0 1.25rem 1.1rem;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-weight: 500;
}

    .pro_itm_more::after {
        content: '';
        display: inline-block;
        width: 22px;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

.pro_item:hover .pro_itm_more {
    color: var(--gold-dark);
}

    .pro_item:hover .pro_itm_more::after {
        width: 38px;
    }
