.fufu-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.fufu-feat-card {
    display: flex;
    flex-direction: column;
    opacity: 0;
}
.fufu-feat-card.fufu-visible {
    animation: fufuRiseUp 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.fufu-feat-img {
    width: 100%;
    overflow: hidden;
    background: none;
    line-height: 0;
}
.fufu-feat-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.fufu-feat-card:hover .fufu-feat-img img {
    transform: scale(1.04);
}

.fufu-feat-label {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffeed0;
    text-align: center;
    margin: 0;
    padding: 16px 8px 30px !important;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .fufu-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .fufu-feat-label {
        padding: 10px 4px 0;
    }
}
