.fc-grid {
    display: grid;
    gap: 20px;
}

.fc-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.fc-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.fc-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #eff4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.fc-icon-wrapper i {
    font-size: 20px;
    color: #1a56db;
}

.fc-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: #1a56db;
}

.fc-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.fc-desc {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.fc-link {
    color: #1a56db;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
}

.fc-link:hover {
    text-decoration: underline;
}

.fc-link i {
    font-size: 12px;
}