.fc-container-6c350dec {
    width: 100%;
}

.fc-grid-6c350dec {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.fc-card-6c350dec {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* Image styling */
.fc-image-wrapper-6c350dec {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.fc-card-img-6c350dec {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Zoom Hover Effect */
.fc-image-zoom-yes .fc-card-6c350dec:hover .fc-card-img-6c350dec {
    transform: scale(1.06);
}

/* Equal Height */
.fc-equal-height-yes .fc-card-6c350dec {
    height: 100%;
}
.fc-equal-height-yes .fc-card-content-6c350dec {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.fc-equal-height-yes .fc-btn-wrapper-6c350dec {
    margin-top: auto;
}

/* Card inner content container */
.fc-card-content-6c350dec {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Hover effects */
.fc-card-6c350dec:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(30, 48, 110, 0.12);
}

.fc-card-6c350dec.featured:hover {
    box-shadow: 0 12px 28px rgba(1, 162, 153, 0.18);
}

/* Typography elements */
.fc-title-6c350dec {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.fc-desc-6c350dec {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Button styling */
.fc-btn-wrapper-6c350dec {
    margin-top: 14px;
}

.fc-btn-6c350dec {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect on btn */
.fc-card-6c350dec:hover .fc-btn-6c350dec {
    transform: translateX(3px);
}

/* Featured card override classes */
.fc-card-6c350dec.featured {
    border: 1px solid rgba(1, 162, 153, 0.3);
}
