.lpg-ce77fab2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.lpg-ce77fab2-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    text-decoration: none !important;
}

.lpg-ce77fab2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.lpg-ce77fab2-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.lpg-ce77fab2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.lpg-ce77fab2-title {
    margin: 0 0 10px 0;
    padding: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}

.lpg-ce77fab2-desc {
    margin: 0;
    color: #eeeeee;
    font-size: 0.9rem;
    line-height: 1.4;
}

.lpg-ce77fab2-item:hover .lpg-ce77fab2-bg {
    transform: scale(1.05);
}

.lpg-ce77fab2-item:hover::after {
    opacity: 1;
}

.lpg-ce77fab2-item:hover .lpg-ce77fab2-content {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .lpg-ce77fab2-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .lpg-ce77fab2-grid {
        grid-template-columns: 1fr !important;
    }
}