.fcg-grid-f64fd5d0 {
    display: grid;
    width: 100%;
}

.fcg-card-f64fd5d0 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
}

.fcg-bg-f64fd5d0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-in-out;
    z-index: 1;
}

.fcg-overlay-f64fd5d0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    transition: background-color 0.4s ease;
    z-index: 2;
}

.fcg-content-f64fd5d0 {
    position: relative;
    z-index: 3;
    padding: 20px;
    transition: transform 0.4s ease-in-out;
}

.fcg-title-f64fd5d0 {
    margin: 0 0 5px;
    color: #fff;
}

.fcg-subtitle-f64fd5d0 {
    color: #eee;
}

/* Hover Effects */
.fcg-card-f64fd5d0:hover .fcg-bg-f64fd5d0 {
    transform: scale(1.1);
}

.fcg-card-f64fd5d0:hover .fcg-content-f64fd5d0 {
    transform: translateY(-10px);
}
