.hc-grid-06b98ed2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
    .hc-grid-06b98ed2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hc-grid-06b98ed2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.hc-item-06b98ed2 {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-item-06b98ed2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.hc-img-wrapper-06b98ed2 {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    overflow: hidden;
}

.hc-main-img-06b98ed2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hc-item-06b98ed2:hover .hc-main-img-06b98ed2 {
    transform: scale(1.05);
}

.hc-title-06b98ed2 {
    padding: 20px 15px;
    margin: 0;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

/* Hover Box */
.hc-hover-box-06b98ed2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.hc-img-wrapper-06b98ed2:hover .hc-hover-box-06b98ed2 {
    opacity: 1;
    visibility: visible;
}

.hc-inner-carousel-06b98ed2 {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.hc-inner-slide-06b98ed2 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hc-inner-slide-06b98ed2 img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}