.ilc-grid-7e4f9b2a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ilc-card-7e4f9b2a {
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
}

/* ── Image ── */
.ilc-image-wrap-7e4f9b2a {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
}

.ilc-image-wrap-7e4f9b2a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ilc-card-7e4f9b2a:hover .ilc-image-wrap-7e4f9b2a img {
    transform: scale(1.04);
}

/* ── Footer ── */
.ilc-footer-7e4f9b2a {
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    transform: translateY(50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ── Title ── */
.ilc-title-7e4f9b2a {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #0b7a42;
    flex: 1;
}

/* ── Arrow button ── */
.ilc-arrow-7e4f9b2a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 2px solid #0b7a42;
    color: #0b7a42;
    background-color: transparent;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.ilc-arrow-7e4f9b2a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: stroke 0.2s ease;
}

.ilc-arrow-7e4f9b2a:hover {
    background-color: #0b7a42;
    color: #ffffff;
    border-color: #0b7a42;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ilc-grid-7e4f9b2a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ilc-grid-7e4f9b2a {
        grid-template-columns: 1fr;
    }
}
