.curved-grid-a7e7e93c {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 100px 20px;
    max-width: 100%;
}

.curved-card-a7e7e93c {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
    /* Handled by settings now, fallback */
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.curved-card-a7e7e93c:hover {
    filter: brightness(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    z-index: 10;
}

.curved-card-a7e7e93c::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

.curved-card-content-a7e7e93c {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
}

.curved-card-content-a7e7e93c h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.curved-card-content-a7e7e93c span {
    font-size: 14px;
    color: #88c0d0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .curved-grid-a7e7e93c {
        justify-content: flex-start;
        padding: 50px 20px;
        flex-wrap: wrap; /* Added to allow stacking if no horizontal scroll */
    }
}
